| Age | Commit message (Expand) | Author | Lines |
| 2015-03-23 | Add #![feature] attributes to doctests | Brian Anderson | -2/+20 |
| 2015-03-17 | std: Stabilize `IteratorExt::cloned` | Alex Crichton | -27/+18 |
| 2015-03-13 | Deprecate range, range_step, count, distributions | Aaron Turon | -69/+113 |
| 2015-03-12 | Rollup merge of #23247 - tbu-:pr_core_iter_rm_isize, r=huonw | Manish Goregaokar | -3/+3 |
| 2015-03-11 | Example -> Examples | Steve Klabnik | -1/+1 |
| 2015-03-10 | Purge `isize` from `core::iter` | Tobias Bucher | -3/+3 |
| 2015-03-08 | Add description of fold function arguments. | Ćukasz Niemier | -1/+1 |
| 2015-03-06 | Rollup merge of #23025 - huonw:better-iter-infer, r=Gankro | Manish Goregaokar | -46/+48 |
| 2015-03-05 | Use more associated types in core::iter. | Huon Wilson | -46/+48 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -1/+1 |
| 2015-03-04 | Auto merge of #22958 - laijs:option_map_for_iter_map, r=alexcrichton | bors | -16/+3 |
| 2015-03-03 | Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddyb | bors | -3/+8 |
| 2015-03-03 | Rollup merge of #22952 - huonw:missing-stable, r=alexcrichton | Manish Goregaokar | -0/+2 |
| 2015-03-03 | `core::iter`: fix bug uncovered by arith-overflow. | Felix S. Klock II | -1/+5 |
| 2015-03-03 | fix Iter::rposition for new arith-overflow checking. | Felix S. Klock II | -2/+3 |
| 2015-03-02 | core: Audit num module for int/uint | Brian Anderson | -3/+3 |
| 2015-03-02 | iter: use Option::map() in struct Iterater::map() | Lai Jiangshan | -16/+3 |
| 2015-03-02 | Add missing stability attributes on struct fields. | Huon Wilson | -0/+2 |
| 2015-03-01 | Auto merge of #22898 - edwardw:one-less-unsafe-impl, r=huonw | bors | -5/+1 |
| 2015-02-28 | Remove two unsafe impls from `iter::Peekable` | Edward Wang | -5/+1 |
| 2015-02-28 | Update iter::order to be more generic. | JP-Ellis | -34/+20 |
| 2015-02-27 | Rollup merge of #22848 - tshepang:redundant-mention, r=brson | Manish Goregaokar | -2/+1 |
| 2015-02-27 | Rollup merge of #22833 - laijs:remove-redundant-else-branch, r=dotdash | Manish Goregaokar | -2/+0 |
| 2015-02-27 | Rollup merge of #22795 - alexcrichton:issue-22617, r=huonw | Manish Goregaokar | -2/+2 |
| 2015-02-26 | doc: the last mention of the word 'iterator' is redundant | Tshepang Lekhonkhobe | -2/+1 |
| 2015-02-26 | remove the redundant else branch | Lai Jiangshan | -2/+0 |
| 2015-02-26 | Send/Sync audit for libcollections | Edward Wang | -1/+5 |
| 2015-02-24 | std: Require `&mut self` for Iterator::all | Alex Crichton | -2/+2 |
| 2015-02-25 | Rollup merge of #22635 - kmcallister:macros-chapter, r=steveklabnik | Manish Goregaokar | -1/+1 |
| 2015-02-24 | Use arrays instead of vectors in tests | Vadim Petrochenkov | -2/+2 |
| 2015-02-24 | core: fix typo that wasn't caught by the hacky previous implementation. | Eduard Burtescu | -1/+1 |
| 2015-02-23 | Add documentation to associated types in libcore, libstd | Ivan Petkov | -0/+3 |
| 2015-02-20 | Add examples for iter::range_step | Steve Klabnik | -2/+47 |
| 2015-02-18 | rollup merge of #22286: nikomatsakis/variance-4b | Alex Crichton | -5/+6 |
| 2015-02-18 | Round 1 fixes and rebase conflicts | Alex Crichton | -5/+5 |
| 2015-02-18 | rollup merge of #22491: Gankro/into_iter | Alex Crichton | -3/+3 |
| 2015-02-18 | rollup merge of #22287: Ryman/purge_carthographers | Alex Crichton | -5/+22 |
| 2015-02-18 | make FromIterator use IntoIterator | Alexis | -2/+2 |
| 2015-02-18 | make Extend use IntoIterator | Alexis | -1/+1 |
| 2015-02-18 | Fallout: iter, add markers or other changes such that all type parameters are... | Niko Matsakis | -5/+6 |
| 2015-02-17 | Register new snapshots | Alex Crichton | -23/+0 |
| 2015-02-17 | rollup merge of #22454: alexcrichton/stabilize-into-iterator | Alex Crichton | -0/+5 |
| 2015-02-18 | Remove usage of .map(|&foo| foo) | Kevin Butler | -4/+4 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -1/+1 |
| 2015-02-18 | Implement RandomAccessIterator for Cloned | Kevin Butler | -0/+17 |
| 2015-02-17 | std: Stabilize the IntoIterator trait | Alex Crichton | -0/+5 |
| 2015-02-17 | Rollup merge of #22027 - iblech:patch-1, r=steveklabnik | Manish Goregaokar | -2/+2 |
| 2015-02-17 | Rollup merge of #22313 - japaric:iter, r=aturon | Manish Goregaokar | -0/+25 |
| 2015-02-17 | Rollup merge of #22344 - nagisa:exactsizediter, r=alexcrichton | Manish Goregaokar | -0/+1 |
| 2015-02-15 | Stabilise ExactSizeIterator::len | Simonas Kazlauskas | -0/+1 |