| Age | Commit message (Expand) | Author | Lines |
| 2014-09-25 | Fix Iterator::fuse example | Steven Fackler | -1/+3 |
| 2014-09-23 | Fix iterator doc | Corey Ford | -3/+1 |
| 2014-09-22 | librustc: Forbid private types in public APIs. | Patrick Walton | -1/+0 |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -3/+3 |
| 2014-09-13 | Remove container guide. | Steve Klabnik | -6/+0 |
| 2014-09-07 | Flip arguments to `std::iter::iterate`. | Jonas Hietala | -1/+1 |
| 2014-08-29 | Register new snapshots | Alex Crichton | -8/+0 |
| 2014-08-28 | auto merge of #16664 : aturon/rust/stabilize-option-result, r=alexcrichton | bors | -1/+6 |
| 2014-08-28 | Fallout from stabilizing core::option | Aaron Turon | -1/+6 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -3/+11 |
| 2014-08-24 | libcore: Simplify Enumerate, Zip::next_back | root | -16/+18 |
| 2014-08-06 | core: Refactor iterators | Piotr Czarnecki | -62/+24 |
| 2014-07-24 | librustc: Stop desugaring `for` expressions and translate them directly. | Patrick Walton | -0/+1 |
| 2014-07-22 | clarifying iterator trait documentation | Alexis Beingessner | -3/+10 |
| 2014-07-21 | Clarify range's exclusivity. | Steve Klabnik | -1/+13 |
| 2014-07-13 | Add an iterate function to core::iter | Jakub Wieczorek | -4/+25 |
| 2014-07-10 | auto merge of #15561 : huonw/rust/must-use-iterators, r=alexcrichton | bors | -1/+18 |
| 2014-07-09 | libcore: Deprecate advance method on Iterators. | Luqman Aden | -1/+2 |
| 2014-07-10 | core: add `#[must_use]` attributes to iterator adaptor structs. | Huon Wilson | -1/+18 |
| 2014-06-29 | Implement RFC#28: Add PartialOrd::partial_cmp | Steven Fackler | -1/+17 |
| 2014-06-29 | Extract tests from libcore to a separate crate | Steven Fackler | -864/+1 |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -5/+5 |
| 2014-06-28 | librustc: Match trait self types exactly. | Patrick Walton | -6/+8 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -100/+100 |
| 2014-06-14 | rustc: Obsolete the `@` syntax entirely | Alex Crichton | -1/+3 |
| 2014-06-11 | rustc: Remove ~[T] from the language | Alex Crichton | -7/+7 |
| 2014-06-06 | Rename Iterator::len to count | Aaron Turon | -25/+23 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -9/+9 |
| 2014-05-30 | syntax: Prepare for Total{Eq,Ord} => {Eq,Ord} | Alex Crichton | -1/+2 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -30/+30 |
| 2014-05-22 | auto merge of #14357 : huonw/rust/spelling, r=pnkfelix | bors | -2/+4 |
| 2014-05-22 | Spelling/doc formatting fixes. | Huon Wilson | -2/+4 |
| 2014-05-21 | Change static.rust-lang.org to doc.rust-lang.org | Alex Crichton | -1/+1 |
| 2014-05-20 | Remove useless ToPrimitive bound on range_inclusive() | Kevin Ballard | -1/+1 |
| 2014-05-19 | core::iter::order functions now take two types of iterators. | TyOverby | -8/+18 |
| 2014-05-15 | core: Update all tests for fmt movement | Alex Crichton | -34/+76 |
| 2014-05-15 | core: Derive Show impls wherever possible | Alex Crichton | -1/+1 |
| 2014-05-13 | std: Move the owned module from core to std | Alex Crichton | -1/+1 |
| 2014-05-08 | Handle fallout in documentation | Kevin Ballard | -2/+2 |
| 2014-05-08 | Handle fallout in iter, option, result, and sync::arc | Kevin Ballard | -34/+35 |
| 2014-05-07 | core: Get coretest working | Alex Crichton | -4/+4 |
| 2014-05-07 | core: Inherit the iter module | Alex Crichton | -0/+3090 |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -326/+0 |
| 2013-05-19 | Register snapshots | Brian Anderson | -42/+5 |
| 2013-05-16 | iter: add fold, sum and product | Daniel Micay | -0/+106 |
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+1 |
| 2013-05-10 | test: Use the new `for` protocol | Alex Crichton | -3/+28 |
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -20/+28 |
| 2013-05-08 | rename iter::iter_to_vec to iter::to_vec | Daniel Micay | -6/+5 |
| 2013-04-30 | iter: add max and min functions | Daniel Micay | -2/+66 |