summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2015-02-10rollup merge of #22129: steveklabnik/gh22032Alex Crichton-3/+2
2015-02-10rollup merge of #22128: steveklabnik/gh22085Alex Crichton-0/+5
2015-02-10rollup merge of #22125: alexcrichton/into-iter-stabilityAlex Crichton-11/+11
2015-02-10rollup merge of #22112: mbudde/std-cell-doc-fixAlex Crichton-5/+5
2015-02-10rollup merge of #22094: alkor/cleanup-show-stringAlex Crichton-1/+1
2015-02-10rollup merge of #22065: bluss/range-size-hintAlex Crichton-10/+7
2015-02-10Made the `ptr::Unique` type accept unsized types, to allow for use casesMarvin Löbel-3/+3
2015-02-09Set up docs for missing core typesSteve Klabnik-0/+5
2015-02-09Remove incorrect docs from mem::transmuteSteve Klabnik-3/+2
2015-02-09std: Mark IntoIterator::into_iter as #[stableAlex Crichton-0/+1
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-7/+7
2015-02-09std: Remove typarms from IteratorExt::clonedAlex Crichton-4/+3
2015-02-09Fix links to module-level documentation in `std::cell`Michael Budde-5/+5
2015-02-08Rename Show to Debug, String to DisplayAlexander Korolkov-1/+1
2015-02-08Fix std::ops::Range size_hint and ExactSizeIterator implsUlrik Sverdrup-10/+7
2015-02-07Feature-gate #![no_std]Keegan McAllister-0/+1
2015-02-07Don't use std:: paths in syntax extensions when compiling a #![no_std] crateKeegan McAllister-9/+17
2015-02-07Auto merge of #21995 - leejunseok:fix_invariant_ex, r=steveklabnikbors-5/+6
2015-02-06make `IndexMut` a super trait over `Index`Jorge Aparicio-20/+14
2015-02-07Fix several tiny typosIngo Blechschmidt-2/+2
2015-02-06Rollup merge of #21989 - steveklabnik:gh21491, r=GankroManish Goregaokar-1/+1
2015-02-06Rollup merge of #21926 - mzabaluev:raw-lifetime, r=alexcrichtonManish Goregaokar-4/+52
2015-02-06Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichtonManish Goregaokar-4/+0
2015-02-06Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnikManish Goregaokar-1/+1
2015-02-06Rollup merge of #21976 - mzabaluev:fix-copy-mut-lifetime, r=alexcrichtonManish Goregaokar-3/+4
2015-02-05added example back in, with a modified, (hopefully) improved descriptionJunseok Lee-0/+14
2015-02-05removed weird exampleJunseok Lee-13/+0
2015-02-05Improve ptr::read docsSteve Klabnik-1/+1
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