| Age | Commit message (Expand) | Author | Lines |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -719/+0 |
| 2013-05-19 | Register snapshots | Brian Anderson | -20/+0 |
| 2013-05-18 | fix stage0 compile | Daniel Micay | -0/+2 |
| 2013-05-18 | iterator: use advance to implement FilterMapIterator | Daniel Micay | -9/+5 |
| 2013-05-18 | iterator: reword docstring | Daniel Micay | -1/+1 |
| 2013-05-18 | iterator: reuse iter::to_vec, and use &mut self | Daniel Micay | -7/+4 |
| 2013-05-18 | iterator: make nth and last return Option | Daniel Micay | -35/+15 |
| 2013-05-18 | iterator: remove `first` | Daniel Micay | -24/+0 |
| 2013-05-18 | libcore: Add `IteratorUtil::all`, `any` method | gifnksm | -0/+31 |
| 2013-05-18 | libcore: Add `AdditiveIterator`, `MultiplicativeIterator`, `OrdIterator` | gifnksm | -0/+79 |
| 2013-05-18 | libcore: Add `IteratorUtil::fold`, `count` | gifnksm | -0/+27 |
| 2013-05-17 | libcore: Add `IteratoUtil::nth`, `first`, `last` method | gifnksm | -0/+81 |
| 2013-05-17 | libcore: Add `IteratorUtil::filter_map` method | gifnksm | -0/+35 |
| 2013-05-17 | libcore: Add `IteratorUtil::to_vec()` method | gifnksm | -0/+9 |
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -2/+20 |
| 2013-05-08 | rename iter::iter_to_vec to iter::to_vec | Daniel Micay | -1/+1 |
| 2013-05-02 | libcore: Make `ChainIterator` take two different-typed `Iterator`s. | gifnksm | -6/+15 |
| 2013-04-24 | add a Counter iterator | Daniel Micay | -8/+37 |
| 2013-04-20 | libcore: add a ScanIterator, a generalisation of MapIterator to have internal... | Huon Wilson | -2/+43 |
| 2013-04-19 | iterator: add a bit of documentation | Daniel Micay | -1/+16 |
| 2013-04-19 | iterator: add a chain adaptor | Daniel Micay | -0/+42 |
| 2013-04-19 | libcore: add an UnfoldrIterator like Haskell's `unfoldr` | Huon Wilson | -0/+43 |
| 2013-04-19 | re-organize the iterator module a bit | Daniel Micay | -16/+16 |
| 2013-04-19 | move iterator adaptor tests to iterator module | Daniel Micay | -0/+67 |
| 2013-04-19 | takewhile -> take_while, dropwhile -> skip_while | Daniel Micay | -7/+7 |
| 2013-04-19 | iterator: add skip and take | Daniel Micay | -0/+61 |
| 2013-04-18 | add dropwhile and takewhile iterators | Daniel Micay | -0/+70 |
| 2013-04-18 | libcore: add an EnumerateIterator, like Python's `enumerate`. | Huon Wilson | -0/+25 |
| 2013-04-15 | iterator: use an IteratorUtil trait | Daniel Micay | -32/+37 |
| 2013-04-13 | initial iterator object library | Daniel Micay | -0/+101 |