| Age | Commit message (Expand) | Author | Lines |
| 2016-05-24 | std: Stabilize APIs for the 1.10 release | Alex Crichton | -9/+0 |
| 2016-04-30 | Implement find() on Chain iterators | Georg Brandl | -0/+13 |
| 2016-03-11 | cleanup int suffixes in libcoretest | srinivasreddy | -4/+4 |
| 2016-03-04 | make skip a double ended iterator | Oliver Schneider | -0/+38 |
| 2016-01-30 | test: Deny warnings in {core,collections}test | Alex Crichton | -8/+8 |
| 2015-12-10 | std: Remove deprecated functionality from 1.5 | Alex Crichton | -12/+0 |
| 2015-08-27 | remove calls to deprecated `iter::order` functions | Andrew Paseltiner | -27/+26 |
| 2015-08-25 | Correct iterator adaptor Chain | Ulrik Sverdrup | -0/+20 |
| 2015-08-12 | Remove all unstable deprecated functionality | Alex Crichton | -186/+0 |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -16/+16 |
| 2015-05-29 | Implement RFC 771: std::iter::once | Nathaniel Theis | -0/+13 |
| 2015-05-05 | Optimize iterator adapters. | Steven Allen | -0/+215 |
| 2015-05-01 | iterator: Add `StepBy::size_hint` method | critiqjo | -1/+13 |
| 2015-04-27 | core: Fix size_hint for signed integer Range<T> iterators | Ulrik Sverdrup | -0/+6 |
| 2015-04-21 | std: Bring back f32::from_str_radix as an unstable API | Alex Crichton | -11/+0 |
| 2015-04-10 | Auto merge of #24180 - huonw:optimise-max-etc, r=alexcrichton | bors | -0/+31 |
| 2015-04-10 | Optimise Iterator::{max, max_by, min, min_by}. | Huon Wilson | -0/+31 |
| 2015-04-08 | Make `sum` and `product` inherent methods on `Iterator` | Tobias Bucher | -6/+6 |
| 2015-03-31 | std: Clean out #[deprecated] APIs | Alex Crichton | -7/+7 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -38/+38 |
| 2015-03-13 | Deprecate range, range_step, count, distributions | Aaron Turon | -6/+6 |
| 2015-03-09 | Rename #[should_fail] to #[should_panic] | Steven Fackler | -1/+1 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -4/+4 |
| 2015-03-03 | Switched to Box::new in many places. | Felix S. Klock II | -4/+7 |
| 2015-03-01 | Remove int/uint from libstd/lib.rs | Guillaume Gomez | -7/+7 |
| 2015-02-24 | Use arrays instead of vectors in tests | Vadim Petrochenkov | -32/+21 |
| 2015-02-20 | fix a few 'variable does not need to be mutable' warnings | Tshepang Lekhonkhobe | -8/+8 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -1/+1 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -1/+1 |
| 2015-02-18 | Remove usage of .map(|&foo| foo) | Kevin Butler | -21/+21 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -1/+1 |
| 2015-02-10 | Deprecating i/u suffixes in libcoretest | Alfie John | -45/+45 |
| 2015-02-08 | Fix std::ops::Range size_hint and ExactSizeIterator impls | Ulrik Sverdrup | -0/+1 |
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -2/+2 |
| 2015-01-30 | Test fixes and rebase conflicts | Alex Crichton | -8/+8 |
| 2015-01-30 | rollup merge of #21631: tbu-/isize_police | Alex Crichton | -90/+90 |
| 2015-01-30 | remove Copy impls from iterators | Jorge Aparicio | -25/+25 |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -90/+90 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -15/+15 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -1/+1 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -4/+4 |
| 2015-01-23 | Auto merge of #21453 - Stebalien:exactsize, r=alexcrichton | bors | -4/+57 |
| 2015-01-21 | Add test cases for ExactSizeIterator impls | Steven Allen | -4/+57 |
| 2015-01-19 | remove unnecessary parentheses from range notation | Jorge Aparicio | -1/+1 |
| 2015-01-12 | cleanup: `&foo[0..a]` -> `&foo[..a]` | Jorge Aparicio | -10/+10 |
| 2015-01-07 | fallout | Nick Cameron | -18/+17 |
| 2015-01-07 | Replace full slice notation with index calls | Nick Cameron | -14/+14 |
| 2015-01-05 | More test fixes! | Alex Crichton | -1/+1 |
| 2015-01-03 | Remove deprecated functionality | Alex Crichton | -1/+1 |
| 2015-01-03 | coretest: fix fallout | Jorge Aparicio | -1/+3 |