| Age | Commit message (Expand) | Author | Lines |
| 2015-02-10 | rollup merge of #22129: steveklabnik/gh22032 | Alex Crichton | -3/+2 |
| 2015-02-10 | rollup merge of #22128: steveklabnik/gh22085 | Alex Crichton | -0/+5 |
| 2015-02-10 | rollup merge of #22125: alexcrichton/into-iter-stability | Alex Crichton | -11/+11 |
| 2015-02-10 | rollup merge of #22112: mbudde/std-cell-doc-fix | Alex Crichton | -5/+5 |
| 2015-02-10 | rollup merge of #22094: alkor/cleanup-show-string | Alex Crichton | -1/+1 |
| 2015-02-10 | rollup merge of #22065: bluss/range-size-hint | Alex Crichton | -10/+7 |
| 2015-02-10 | Made the `ptr::Unique` type accept unsized types, to allow for use cases | Marvin Löbel | -3/+3 |
| 2015-02-09 | Set up docs for missing core types | Steve Klabnik | -0/+5 |
| 2015-02-09 | Remove incorrect docs from mem::transmute | Steve Klabnik | -3/+2 |
| 2015-02-09 | std: Mark IntoIterator::into_iter as #[stable | Alex Crichton | -0/+1 |
| 2015-02-09 | std: Rename IntoIterator::Iter to IntoIter | Alex Crichton | -7/+7 |
| 2015-02-09 | std: Remove typarms from IteratorExt::cloned | Alex Crichton | -4/+3 |
| 2015-02-09 | Fix links to module-level documentation in `std::cell` | Michael Budde | -5/+5 |
| 2015-02-08 | Rename Show to Debug, String to Display | Alexander Korolkov | -1/+1 |
| 2015-02-08 | Fix std::ops::Range size_hint and ExactSizeIterator impls | Ulrik Sverdrup | -10/+7 |
| 2015-02-07 | Feature-gate #![no_std] | Keegan McAllister | -0/+1 |
| 2015-02-07 | Don't use std:: paths in syntax extensions when compiling a #![no_std] crate | Keegan McAllister | -9/+17 |
| 2015-02-07 | Auto merge of #21995 - leejunseok:fix_invariant_ex, r=steveklabnik | bors | -5/+6 |
| 2015-02-06 | make `IndexMut` a super trait over `Index` | Jorge Aparicio | -20/+14 |
| 2015-02-07 | Fix several tiny typos | Ingo Blechschmidt | -2/+2 |
| 2015-02-06 | Rollup merge of #21989 - steveklabnik:gh21491, r=Gankro | Manish Goregaokar | -1/+1 |
| 2015-02-06 | Rollup merge of #21926 - mzabaluev:raw-lifetime, r=alexcrichton | Manish Goregaokar | -4/+52 |
| 2015-02-06 | Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton | Manish Goregaokar | -4/+0 |
| 2015-02-06 | Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnik | Manish Goregaokar | -1/+1 |
| 2015-02-06 | Rollup merge of #21976 - mzabaluev:fix-copy-mut-lifetime, r=alexcrichton | Manish Goregaokar | -3/+4 |
| 2015-02-05 | added example back in, with a modified, (hopefully) improved description | Junseok Lee | -0/+14 |
| 2015-02-05 | removed weird example | Junseok Lee | -13/+0 |
| 2015-02-05 | Improve ptr::read docs | Steve Klabnik | -1/+1 |
| 2015-02-05 | Make the lifetime anchor immutable on std::mem::copy_mut_lifetime | Mikhail Zabaluev | -3/+4 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -1/+1 |
| 2015-02-05 | Replace usage of slice::from_raw_buf with slice::from_raw_parts | Mikhail Zabaluev | -4/+52 |
| 2015-02-04 | Fix for misspelled comments. | Joseph Crail | -1/+1 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -8/+8 |
| 2015-02-03 | Switch missing_copy_implementations to default-allow | Steven Fackler | -4/+0 |
| 2015-02-03 | rollup merge of #21907: alexcrichton/iter-by-ref | Alex Crichton | -42/+19 |
| 2015-02-03 | rollup merge of #21897: dotdash/rposition | Alex Crichton | -3/+4 |
| 2015-02-03 | rollup merge of #21870: alexcrichton/missing-stability | Alex Crichton | -0/+4 |
| 2015-02-03 | Rename std::path to std::old_path | Aaron Turon | -1/+1 |
| 2015-02-03 | std: Remove `iter::ByRef` and generalize impls | Alex Crichton | -42/+19 |
| 2015-02-03 | Optimize rposition | Björn Steinbrink | -3/+4 |
| 2015-02-02 | std: Add some missing stability attributes | Alex Crichton | -0/+4 |
| 2015-02-02 | Test fixes and rebase conflicts | Alex Crichton | -5/+5 |
| 2015-02-02 | rollup merge of #21854: alexcrichton/try-borrow | Alex Crichton | -14/+51 |
| 2015-02-02 | rollup merge of #21842: alexcrichton/issue-21839 | Alex Crichton | -244/+110 |
| 2015-02-02 | rollup merge of #21830: japaric/for-cleanup | Alex Crichton | -124/+11 |
| 2015-02-02 | rollup merge of #21794: alexcrichton/stabilize-atomic-usize | Alex Crichton | -0/+20 |
| 2015-02-02 | remove unused mut qualifiers | Jorge 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 |