summary refs log tree commit diff
path: root/src/libcollections/linked_list.rs
AgeCommit message (Expand)AuthorLines
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
2015-06-06linked_list: Cleanup code in split_offUlrik Sverdrup-13/+37
2015-06-06linked_list: Use unsafe properly for Rawlink methodsUlrik Sverdrup-48/+70
2015-06-06linked_list: Use a safe loop in DropUlrik Sverdrup-11/+3
2015-06-04properly null out ptr in LinkedList::split_off - fixes #26020Alexis Beingessner-0/+26
2015-06-04Auto merge of #25991 - Jexell:master, r=alexcrichtonbors-5/+3
2015-06-03Update linked_list.rsJexell-5/+3
2015-05-20Auto merge of #25588 - bluss:doc-string-from, r=alexcrichtonbors-5/+0
2015-05-19collections: Clean up feature flags doc examplesUlrik Sverdrup-5/+0
2015-05-17Make debug builders take &mut self, add entries methodSteven Fackler-1/+1
2015-04-28Register new snapshotsTamir Duberstein-1/+0
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-17std: Add Default/IntoIterator/ToOwned to the preludeAlex Crichton-11/+5
2015-04-14test: Fixup many library unit testsAlex Crichton-2/+2
2015-03-31rollup merge of #23288: alexcrichton/issue-19470Alex Crichton-1/+1
2015-03-31rollup merge of #23908: aturon/stab-more-stragglersAlex Crichton-0/+1
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-5/+1
2015-03-31Stabilize a few remaining stragglersAaron Turon-0/+1
2015-03-31std: Remove #[old_orphan_check] from PartialEqAlex Crichton-1/+1
2015-03-29Auto merge of #23810 - sfackler:debug-collections, r=alexcrichtonbors-8/+1
2015-03-28Remove IteratorExtSteven Fackler-1/+1
2015-03-28Fold collections debug implsSteven Fackler-5/+1
2015-03-28Update debug helpers and add list builderSteven Fackler-7/+4
2015-03-23rollup merge of #23598: brson/gateAlex Crichton-0/+7
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+7
2015-03-23implement `ExactSizeIterator` for `linked_list::IntoIter`Andrew Paseltiner-0/+2