about summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2015-02-05Make the lifetime anchor immutable on std::mem::copy_mut_lifetimeMikhail Zabaluev-3/+4
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-1/+1
2015-02-05Replace usage of slice::from_raw_buf with slice::from_raw_partsMikhail Zabaluev-4/+52
2015-02-04Fix for misspelled comments.Joseph Crail-1/+1
2015-02-04remove all kind annotations from closuresJorge Aparicio-8/+8
2015-02-03Switch missing_copy_implementations to default-allowSteven Fackler-4/+0
2015-02-03rollup merge of #21907: alexcrichton/iter-by-refAlex Crichton-42/+19
2015-02-03rollup merge of #21897: dotdash/rpositionAlex Crichton-3/+4
2015-02-03rollup merge of #21870: alexcrichton/missing-stabilityAlex Crichton-0/+4
2015-02-03Rename std::path to std::old_pathAaron Turon-1/+1
2015-02-03std: Remove `iter::ByRef` and generalize implsAlex Crichton-42/+19
2015-02-03Optimize rpositionBjörn Steinbrink-3/+4
2015-02-02std: Add some missing stability attributesAlex Crichton-0/+4
2015-02-02Test fixes and rebase conflictsAlex Crichton-5/+5
2015-02-02rollup merge of #21854: alexcrichton/try-borrowAlex Crichton-14/+51
2015-02-02rollup merge of #21842: alexcrichton/issue-21839Alex Crichton-244/+110
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-124/+11
2015-02-02rollup merge of #21794: alexcrichton/stabilize-atomic-usizeAlex Crichton-0/+20
2015-02-02remove unused mut qualifiersJorge Aparicio-7/+6
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-2/+2
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-02-02register snapshotsJorge Aparicio-112/+0
2015-02-02Documenting libcore/char.rsSteve Klabnik-20/+174
2015-02-01std: Deprecate RefCell::{try_borrow, try_borrow_mut}Alex Crichton-14/+51
2015-02-01std: Remove extra type params on iter adaptorsAlex Crichton-244/+110
2015-02-01Auto merge of #21806 - edwardw:new-range-impl, r=alexcrichtonbors-69/+47
2015-02-01Make sure type inference with `a..b` as good as `range(a,b)`Edward Wang-69/+47
2015-01-31remove Copy impls from remaining iteratorsJorge Aparicio-2/+3
2015-01-30std: Stabilize Atomic{Isize,Usize} methodsAlex Crichton-0/+20
2015-01-30Merge remote-tracking branch 'origin/master' into rollupAlex Crichton-0/+3
2015-01-30Test fixes and rebase conflictsAlex Crichton-13/+13
2015-01-30rollup merge of #21713: alexcrichton/second-pass-fmtAlex Crichton-196/+242
2015-01-30rollup merge of #21760: brson/snapsAlex Crichton-62/+0
2015-01-30rollup merge of #21718: alexcrichton/stabilize-from-strAlex Crichton-67/+164
2015-01-30rollup merge of #21706: reem/missing-zeroable-impl-for-uniqueAlex Crichton-0/+2
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-196/+242
2015-01-30std: Stabilize FromStr and parseAlex Crichton-67/+164
2015-01-30fixes after rebaseJorge Aparicio-1/+0
2015-01-30remove Copy impls from iteratorsJorge Aparicio-11/+8
2015-01-30fix falloutJorge Aparicio-11/+15
2015-01-30core: add the `IntoIterator` traitJorge Aparicio-0/+51
2015-01-30Auto merge of #21604 - nikomatsakis:closure-move-indiv-vars, r=eddybbors-0/+3
2015-01-30Use `#[rustc_paren_sugar]` as a more extensible way of deciding whenNiko Matsakis-0/+3
2015-01-29Register snapsBrian Anderson-62/+0
2015-01-30Change from core::ops::RangeFull to std::opsNick Cameron-3/+3
2015-01-30Rename FullRange to RangeFullNick Cameron-14/+55
2015-01-30Remove FullRange from the prelude etc.Nick Cameron-0/+6
2015-01-30Use absolute path to FullRange, rather than assuming it is in the preludeNick Cameron-0/+1
2015-01-29Auto merge of #21677 - japaric:no-range, r=alexcrichtonbors-52/+35