about summary refs log tree commit diff
path: root/src/libstd/collections/hash
AgeCommit message (Expand)AuthorLines
2015-02-18Round 1 fixes and rebase conflictsAlex Crichton-4/+6
2015-02-18Stabilize std::borrowAaron Turon-16/+16
2015-02-18rollup merge of #22491: Gankro/into_iterAlex Crichton-4/+6
2015-02-18make FromIterator use IntoIteratorAlexis-2/+4
2015-02-18make Extend use IntoIteratorAlexis-2/+2
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-158/+3696
2015-02-18Fallout: add phantomdata to hashNiko Matsakis-3/+4
2015-02-18Fallout: port hashmap to use UniqueNiko Matsakis-23/+39
2015-02-17Register new snapshotsAlex Crichton-75/+0
2015-02-17std: Stabilize the IntoIterator traitAlex Crichton-0/+5
2015-02-17Rollup merge of #22313 - japaric:iter, r=aturonManish Goregaokar-0/+80
2015-02-13add an associated `Item` type to `IntoIterator`Jorge Aparicio-0/+80
2015-02-13more int and cloned cleanup in collectionsAlexis-24/+24
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-5/+5
2015-02-06make `IndexMut` a super trait over `Index`Jorge Aparicio-2/+0
2015-02-07fix outdated docsAlexis-27/+27
2015-02-06Rollup merge of #21969 - Gankro:collections-cleanup, r=alexcrichtonManish Goregaokar-124/+124
2015-02-06Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichtonManish Goregaokar-2/+0
2015-02-05misc collections code cleanupAlexis-124/+124
2015-02-04stabilize core Entry APIAlexis-8/+8
2015-02-04Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichtonbors-0/+1
2015-02-03Switch missing_copy_implementations to default-allowSteven Fackler-2/+0
2015-02-04Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`.Huon Wilson-0/+1
2015-02-03Auto merge of #21745 - chris-morgan:add-missing-unstable-attributes, r=huonwbors-0/+5
2015-02-02rollup merge of #21842: alexcrichton/issue-21839Alex Crichton-16/+6
2015-02-02remove unused mut qualifiersJorge Aparicio-3/+3
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-5/+5
2015-02-02impl IntoIterator for HashSetJorge Aparicio-1/+27
2015-02-02impl IntoIterator for HashMapJorge Aparicio-1/+37
2015-02-01std: Remove extra type params on iter adaptorsAlex Crichton-16/+6
2015-02-01Auto merge of #21811 - tbu-:pr_more_isize, r=alexcrichtonbors-2/+2
2015-01-31make Send/Sync impl of RawTable manualAlexis-12/+14
2015-01-31Kill more `isize`sTobias Bucher-2/+2
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-89/+89
2015-01-30smoke out remaining bugsJorge Aparicio-2/+1
2015-01-30fix testsJorge Aparicio-0/+1
2015-01-30fix falloutJorge Aparicio-2/+2
2015-01-30Add a few missing stability markers.Chris Morgan-0/+5
2015-01-30Remove all `i` suffixesTobias Bucher-89/+89
2015-01-29fix inference falloutJorge Aparicio-6/+6
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-27/+27
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-3/+3
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-34/+34
2015-01-23grandfathered -> rust1Brian Anderson-92/+92
2015-01-23Set unstable feature names appropriatelyBrian Anderson-18/+18
2015-01-21Remove 'since' from unstable attributesBrian Anderson-18/+18
2015-01-21Tie stability attributes to feature gatesBrian Anderson-1/+0
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-110/+124
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-11/+11