about summary refs log tree commit diff
path: root/src/libcollections/linked_list.rs
AgeCommit message (Expand)AuthorLines
2017-06-13Merge crate `collections` into `alloc`Murarth-1504/+0
2017-05-04fallout from NonZero/Unique/Shared changesAlexis Beingessner-29/+43
2017-04-22Fix invalid linkageGuillaume Gomez-1/+1
2017-04-19Fix debug infinite loopGuillaume Gomez-5/+6
2017-04-13Various fixes throughout std::collections' docslukaramu-2/+2
2017-04-13Update std::collections' docs to use iterator (etc.) boilerplatelukaramu-3/+21
2017-04-04Fix linkssteveklabnik-2/+2
2017-03-27Fix various useless derefs and slicingsOliver Schneider-1/+1
2017-03-17Stabilize rc_raw feature, closes #37197Aaron Turon-17/+17
2017-02-05Replace PlaceBack Debug implementation with deriveGuillaume Gomez-10/+14
2017-01-20Remove Debug implementations specializationGuillaume Gomez-35/+0
2017-01-20Add Debug implementations for libcollection structsGuillaume Gomez-0/+80
2016-12-28Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_dangle]`Andrew Paseltiner-2/+1
2016-12-24Rollup merge of #38297 - matklad:linked-lists-are-not-cool, r=GuillaumeGomezSteve Klabnik-3/+17
2016-12-20run rustfmt on libcollections folderSrinivas Reddy Thatiparthy-18/+32
2016-12-16Advertise Vec in LinkedList docsAleksey Kladov-3/+17
2016-09-30Ignore lots and lots of std tests on emscriptenBrian Anderson-0/+1
2016-09-11Documentation of what does for each typeathulappadan-0/+1
2016-08-24Remove needless imports in `libcollections`.Jeffrey Seyfried-4/+0
2016-08-23Auto merge of #35656 - Stebalien:fused, r=alexcrichtonbors-1/+10
2016-08-19std: Stabilize APIs for the 1.12 releaseAlex Crichton-4/+1
2016-08-18Add a FusedIterator trait.Steven Allen-1/+10
2016-07-28Rewrite `collections::LinkedList::append` doc example.Corey Farwell-11/+14
2016-07-17Add examples for LinkedListGuillaume Gomez-9/+65
2016-07-01Replace `LinkedList`'s use of `Box` with `Shared`Andrew Paseltiner-352/+283
2016-04-20Auto merge of #32951 - LukasKalbertodt:collection_contains_rfc1552, r=brsonbors-0/+10
2016-04-14Add `contains` to `VecDeque` and `LinkedList` (+ tests)Lukas Kalbertodt-0/+10
2016-04-14Specialize `Extend` to `append` for `{LinkedList, Vec}`Andrew Paseltiner-0/+14
2016-03-28Rollup merge of #32177 - srinivasreddy:remove_integer_suffixes, r=steveklabnikSteve Klabnik-8/+8
2016-03-12std: Clean out deprecated APIsAlex Crichton-1/+1
2016-03-11removed integer suffixes in libcollections and libcollectionstestsrinivasreddy-8/+8
2016-02-16Implement placement-in protocol for `LinkedList`Andrew Paseltiner-2/+148
2016-02-02Correct `linked_list::IntoIter` doc commentAndrew Paseltiner-1/+1
2015-12-31Make `LinkedList` and its read-only iterators covariantAndrew Paseltiner-6/+14
2015-11-24rustfmt libcollectionsNick Cameron-54/+75
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+2
2015-11-06Remove stability annotations from trait impl itemsVadim Petrochenkov-1/+0
2015-10-06Add RFC 1238's `unsafe_destructor_blind_to_params` (UGEH) where needed.Felix S. Klock II-0/+1
2015-08-26Make iter::order functions into methods on IteratorSteven Fackler-5/+5
2015-08-15collections: Add issues for unstable featuresAlex Crichton-2/+4
2015-08-11Register new snapshotsAlex Crichton-3/+0
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+2
2015-07-27Show appropriate feature flags in docsSteve Klabnik-2/+4
2015-06-17Fallout in tests and docs from feature renamingsAlex Crichton-2/+2
2015-06-17collections: Split the `collections` featureAlex Crichton-2/+2
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-2/+2
2015-06-08Auto merge of #25989 - jooert:implement_rfc839, r=Gankrobors-0/+7
2015-06-08Implement RFC 839Johannes Oertel-0/+7
2015-06-06linked_list: Add Rawlink::fromUlrik Sverdrup-12/+14
2015-06-06linked_list: Add method Node::set_nextUlrik Sverdrup-11/+20