about summary refs log tree commit diff
path: root/src/libcollections/vec_deque.rs
AgeCommit message (Expand)AuthorLines
2017-06-13Merge crate `collections` into `alloc`Murarth-2970/+0
2017-05-04fallout from NonZero/Unique/Shared changesAlexis Beingessner-1/+1
2017-04-22Fix invalid linkageGuillaume Gomez-1/+1
2017-04-20Auto merge of #41342 - GuillaumeGomez:btree-debug-infinite, r=alexcrichtonbors-4/+10
2017-04-19Fix debug infinite loopGuillaume Gomez-4/+10
2017-04-18Fix a few stability attributesOliver Middleton-1/+1
2017-04-13Various consistency and phrasing fixes in std::collections' docslukaramu-4/+2
2017-04-13Various fixes throughout std::collections' docslukaramu-3/+10
2017-04-13Update std::collections' docs to use iterator (etc.) boilerplatelukaramu-4/+28
2017-04-10Apply clippy's doc_markdown improvements to libcollectionsAndre Bogus-4/+4
2017-04-01Change wording for push_frontStjepan Glavina-1/+1
2017-03-31Improve some docs for VecDequeStjepan Glavina-9/+9
2017-03-22Various fixes to wording consistency in the docsStjepan Glavina-2/+2
2017-03-17Stabilize rc_raw feature, closes #37197Aaron Turon-1/+1
2017-03-10Rollup merge of #40423 - DirkyJerky:patch-2, r=BurntSushiAlex Crichton-1/+1
2017-03-10Clarify docs in `VecDeque::resize`Geoff Yoerger-1/+1
2017-03-09Implement placement-in protocol for and `VecDeque`Charlie Fan-25/+160
2017-02-07Auto merge of #39002 - GuillaumeGomez:debug_libcollections, r=aturonbors-0/+36
2017-02-05Replace PlaceBack Debug implementation with deriveGuillaume Gomez-8/+8
2017-01-28Implement `PartialEq<&[A]>` for `VecDeque<A>`.Corey Farwell-36/+74
2017-01-25std: Stabilize APIs for the 1.16.0 releaseAlex Crichton-10/+2
2017-01-20Remove Debug implementations specializationGuillaume Gomez-28/+0
2017-01-20Add Debug implementations for libcollection structsGuillaume Gomez-0/+64
2017-01-14have RangeArgument return a Bound<&T> from each of its methodsdjzin-2/+11
2017-01-10Rollup merge of #38664 - apasel422:may-dangle, r=pnkfelixSeo Sanghyeon-2/+1
2017-01-09Auto merge of #38581 - frewsxcv:vecdequeue-insert, r=GuillaumeGomezbors-8/+12
2016-12-28Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_dangle]`Andrew Paseltiner-2/+1
2016-12-26Clarify behavior of `VecDeque::insert`.Corey Farwell-8/+12
2016-12-20run rustfmt on libcollections folderSrinivas Reddy Thatiparthy-48/+35
2016-12-04collections: Simplify VecDeque::is_emptyUlrik Sverdrup-4/+16
2016-10-25Special case .fold() for VecDeque's iteratorsUlrik Sverdrup-20/+54
2016-10-01std: Correct stability attributes for some implementationsOliver Middleton-4/+4
2016-09-23Minor `VecDeque` doc examples cleanup.Corey Farwell-5/+5
2016-09-11Documentation for default types modifiedathulappadan-1/+1
2016-09-11Documentation of what does for each typeathulappadan-0/+1
2016-08-24Remove needless imports in `libcollections`.Jeffrey Seyfried-3/+0
2016-08-23Auto merge of #35656 - Stebalien:fused, r=alexcrichtonbors-1/+14
2016-08-19std: Stabilize APIs for the 1.12 releaseAlex Crichton-4/+1
2016-08-18Add a FusedIterator trait.Steven Allen-1/+14
2016-08-04Made vec_deque::Drain, hash_map::Drain, and hash_set::Drain covariantThomas Garcia-3/+4
2016-07-22Update VecDeque documentation to specify direction of index 0 (#34920)abhi-0/+16
2016-07-16Add examples for VecDequeGuillaume Gomez-1/+71
2016-04-20Auto merge of #32951 - LukasKalbertodt:collection_contains_rfc1552, r=brsonbors-0/+11
2016-04-18Added From<VecDeque<T>> for Vec<T> and From<Vec<T>> for VecDeque<T>David Hewitt-0/+179
2016-04-14Add `contains` to `VecDeque` and `LinkedList` (+ tests)Lukas Kalbertodt-0/+11
2016-03-28style: Use `iter` for IntoIterator parameter namesKamal Marhubi-2/+2
2016-03-02Use ptr::drop_in_place in VecDeque::dropUlrik Sverdrup-1/+6
2016-01-27collections: Use slices parts in PartialEq for VecDequeUlrik Sverdrup-1/+33
2016-01-27collections: Hash VecDeque in its slice partsUlrik Sverdrup-3/+3
2016-01-18Auto merge of #30956 - KiChjang:move-tests-to-libcollectionstest, r=blussbors-30/+0