about summary refs log tree commit diff
path: root/src/libcollections/dlist.rs
AgeCommit message (Expand)AuthorLines
2015-02-18Implement RFC 580Aaron Turon-1505/+0
2015-02-17Register new snapshotsAlex Crichton-33/+0
2015-02-17rollup merge of #22435: aturon/final-stab-threadAlex Crichton-2/+2
2015-02-17Fallout from stabilizationAaron Turon-2/+2
2015-02-17std: Stabilize the IntoIterator traitAlex Crichton-0/+2
2015-02-17Rollup merge of #22313 - japaric:iter, r=aturonManish Goregaokar-0/+36
2015-02-16Auto merge of #22367 - Manishearth:rollup, r=steveklabnikbors-1/+20
2015-02-13allow DList to split_at . fixes #22244Alexis-1/+20
2015-02-13add an associated `Item` type to `IntoIterator`Jorge Aparicio-0/+36
2015-02-13more int and cloned cleanup in collectionsAlexis-3/+3
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-3/+3
2015-02-05misc collections code cleanupAlexis-38/+36
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-5/+5
2015-02-02remove unused mut qualifiersJorge Aparicio-1/+1
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-01-31Kill more `isize`sTobias Bucher-15/+15
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-38/+38
2015-01-30core: add the `IntoIterator` traitJorge Aparicio-1/+25
2015-01-30Remove all `i` suffixesTobias Bucher-38/+38
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-7/+7
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+2
2015-01-23grandfathered -> rust1Brian Anderson-42/+42
2015-01-23Set unstable feature names appropriatelyBrian Anderson-2/+2
2015-01-21Remove 'since' from unstable attributesBrian Anderson-2/+2
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-44/+46
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-14Add examples for DList methods.nathan dotz-6/+166
2015-01-09Add append() and split_off() to DList.Tim Dumol-41/+161
2015-01-07std: Stabilize the std::hash moduleAlex Crichton-5/+5
2015-01-06More test fixesAlex Crichton-2/+2
2015-01-06rollup merge of #20615: aturon/stab-2-threadAlex Crichton-1/+1
2015-01-06Fallout from stabilizationAaron Turon-1/+1
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-2/+2
2015-01-05More test fixes!Alex Crichton-0/+1
2015-01-05Revert "Remove i suffix in docs"Alex Crichton-5/+5
2015-01-05rollup merge of #20560: aturon/stab-2-iter-ops-sliceAlex Crichton-0/+2
2015-01-05Remove i suffix in docsSteve Klabnik-5/+5
2015-01-05Stabilize collection modulesAaron Turon-0/+2
2015-01-03Remove deprecated functionalityAlex Crichton-225/+37
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-1/+1
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-1/+1
2015-01-03collections: fix falloutJorge Aparicio-10/+15
2015-01-02std: Stabilize the prelude moduleAlex Crichton-2/+3
2015-01-02auto merge of #20356 : Gankro/rust/stab, r=aturonbors-116/+55
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-5/+5
2014-12-31stabilize more of collectionsAlexis Beingessner-116/+55
2014-12-30rollup merge of #20061: aturon/stab-2-vec-sliceAlex Crichton-2/+4