about summary refs log tree commit diff
path: root/src/libstd/collections
AgeCommit message (Expand)AuthorLines
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-28/+28
2015-02-07fix outdated docsAlexis-9/+9
2015-02-06More libcollections fixesManish Goregaokar-3/+3
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-06Rollup merge of #21951 - Gankro:entry, r=aturonManish Goregaokar-8/+8
2015-02-05misc collections code cleanupAlexis-124/+124
2015-02-04Fix for misspelled comments.Joseph Crail-1/+1
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-36/+86
2015-01-23grandfathered -> rust1Brian Anderson-95/+95
2015-01-23Set unstable feature names appropriatelyBrian Anderson-19/+19
2015-01-22Rollup merge of #21217 - Gankro:docadoca, r=steveklabnikSteve Klabnik-2/+52
2015-01-21Remove 'since' from unstable attributesBrian Anderson-19/+19
2015-01-21Tie stability attributes to feature gatesBrian Anderson-1/+0
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-114/+128
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-11/+11
2015-01-21rollup merge of #21419: Toby-S/patch-1Alex Crichton-23/+23
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-11/+11
2015-01-21Rollup merge of #21375 - petrochenkov:ssbsl, r=alexcrichtonBarosl LEE-13/+10
2015-01-21Rollup merge of #21302 - gutworth:rm-find-equiv-test, r=brsonBarosl LEE-17/+0
2015-01-20Correct small typos in map.rs.Toby Scrace-23/+23
2015-01-19Implement range and range_mut for BTreePiotr Czarnecki-0/+1
2015-01-17remove test_find_equiv, since find_equiv doesn't exist anymoreBenjamin Peterson-17/+0
2015-01-17Remove unnecessary explicit conversions to *const Twe-13/+10