summary refs log tree commit diff
path: root/src/libcollections/vec_map.rs
AgeCommit message (Expand)AuthorLines
2015-02-18rollup merge of #22286: nikomatsakis/variance-4bAlex Crichton-1/+1
2015-02-18rollup merge of #22491: Gankro/into_iterAlex Crichton-2/+2
2015-02-18make FromIterator use IntoIteratorAlexis-1/+1
2015-02-18make Extend use IntoIteratorAlexis-1/+1
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-1/+18
2015-02-18Fallout: Port Vec to use `Unique`Niko Matsakis-1/+1
2015-02-17Register new snapshotsAlex Crichton-33/+0
2015-02-17std: Stabilize the IntoIterator traitAlex Crichton-0/+3
2015-02-13add an associated `Item` type to `IntoIterator`Jorge Aparicio-0/+36
2015-02-11rollup merge of #22151: Gankro/macro-benchAlex Crichton-65/+8
2015-02-10fix and macro-ify map benches, fixes #22134Alexis-65/+8
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-3/+3
2015-02-06make `IndexMut` a super trait over `Index`Jorge Aparicio-2/+0
2015-02-06libcollections: unit test fixesManish Goregaokar-1/+2
2015-02-06remove int_uint feature from libcollectionsAlexis-2/+2
2015-02-06Rollup merge of #21969 - Gankro:collections-cleanup, r=alexcrichtonManish Goregaokar-79/+77
2015-02-05misc collections code cleanupAlexis-79/+77
2015-02-04stabilize core Entry APIAlexis-15/+8
2015-02-03rollup merge of #21882: Gankro/vec_entryAlex Crichton-1/+193
2015-02-03add naivest entry API to VecMapAlexis-1/+193
2015-02-02rollup merge of #21842: alexcrichton/issue-21839Alex Crichton-6/+2
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_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-02-01std: Remove extra type params on iter adaptorsAlex Crichton-6/+2
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-20/+20
2015-01-30core: add the `IntoIterator` traitJorge Aparicio-1/+25
2015-01-30Remove all `i` suffixesTobias Bucher-20/+20
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+2
2015-01-23grandfathered -> rust1Brian Anderson-41/+41
2015-01-23Set unstable feature names appropriatelyBrian Anderson-4/+4
2015-01-21Remove 'since' from unstable attributesBrian Anderson-4/+4
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-45/+46
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-2/+2
2015-01-19Add test for #21328Adolfo Ochagavía-1/+13
2015-01-19Add a Drain iterator to VecMapAdolfo Ochagavía-6/+55
2015-01-19Make VecMap::into_iter consume the VecMapAdolfo Ochagavía-4/+3
2015-01-07std: Stabilize the std::hash moduleAlex Crichton-6/+6
2015-01-06rollup merge of #20481: seanmonstar/fmt-show-stringAlex Crichton-5/+5
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-5/+5
2015-01-07Replace full slice notation with index callsNick Cameron-1/+2
2015-01-05register snapshotJorge Aparicio-22/+0
2015-01-03Remove deprecated functionalityAlex Crichton-75/+0
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-3/+3
2015-01-03collections: fix falloutJorge Aparicio-0/+25
2015-01-03collections: fix falloutJorge Aparicio-10/+18
2015-01-02std: Stabilize the prelude moduleAlex Crichton-1/+3
2014-12-31stabilize more of collectionsAlexis Beingessner-61/+41