about summary refs log tree commit diff
path: root/src/libcollections
AgeCommit message (Expand)AuthorLines
2015-02-05remove int_uint feature from libcollectionsAlexis-196/+195
2015-02-05remove unecessary lifetimes from a bunch of collections codeAlexis-50/+50
2015-02-05misc collections code cleanupAlexis-1139/+1105
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-71/+73
2015-02-05Replace usage of slice::from_raw_buf with slice::from_raw_partsMikhail Zabaluev-0/+1
2015-02-04Fix for misspelled comments.Joseph Crail-1/+1
2015-02-04remove all kind annotations from closuresJorge Aparicio-22/+22
2015-02-04stabilize core Entry APIAlexis-32/+17
2015-02-04std: Add reexports for core parse errorsAlex Crichton-1/+1
2015-02-04Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichtonbors-0/+1
2015-02-03Switch missing_copy_implementations to default-allowSteven Fackler-1/+0
2015-02-03rollup merge of #21882: Gankro/vec_entryAlex Crichton-1/+193
2015-02-04Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`.Huon Wilson-0/+1
2015-02-03add naivest entry API to VecMapAlexis-1/+193
2015-02-02rollup merge of #21842: alexcrichton/issue-21839Alex Crichton-18/+14
2015-02-02remove unused mut qualifiersJorge Aparicio-16/+14
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-6/+6
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-19/+19
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-39/+39
2015-02-02register snapshotsJorge Aparicio-45/+0
2015-02-01std: Remove extra type params on iter adaptorsAlex Crichton-18/+14
2015-01-31Kill more `isize`sTobias Bucher-15/+15
2015-01-30Test fixes and rebase conflictsAlex Crichton-22/+22
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-473/+473
2015-01-30rollup merge of #21528: tshepang/simpler-replace-exampleAlex Crichton-5/+2
2015-01-30rollup merge of #21713: alexcrichton/second-pass-fmtAlex Crichton-7/+6
2015-01-30rollup merge of #21718: alexcrichton/stabilize-from-strAlex Crichton-8/+10
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-7/+6
2015-01-30std: Stabilize FromStr and parseAlex Crichton-8/+10
2015-01-30s/while let/for/g now that #21245 has been fixedJorge Aparicio-12/+4
2015-01-30fix recursive callJorge Aparicio-1/+1
2015-01-30smoke out remaining bugsJorge Aparicio-2/+2
2015-01-30fix falloutJorge Aparicio-14/+26
2015-01-30core: add the `IntoIterator` traitJorge Aparicio-9/+185
2015-01-30Remove all `i` suffixesTobias Bucher-473/+473
2015-01-30Change from core::ops::RangeFull to std::opsNick Cameron-1/+2
2015-01-30Rename FullRange to RangeFullNick Cameron-2/+38
2015-01-30Remove FullRange from the prelude etc.Nick Cameron-0/+8
2015-01-29s/Show/Debug/gJorge Aparicio-10/+10
2015-01-29remove unused importsJorge Aparicio-2/+2
2015-01-29fix inference falloutJorge Aparicio-15/+15
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-22/+22
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-116/+116
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-44/+44
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-51/+51
2015-01-28Merge remote-tracking branch 'origin/master' into rollupManish Goregaokar-645/+756
2015-01-28Move return type an associated type of the `Fn*` traits. Mostly this involves...Niko Matsakis-1/+3
2015-01-27Rollup merge of #21625 - carols10cents:sliceext-examples, r=alexcrichtonManish Goregaokar-4/+105
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-51/+51
2015-01-26Correct a typo in a deprecation warningCarol Nichols-1/+1