| Age | Commit message (Expand) | Author | Lines |
| 2014-02-07 | moved collections from libextra into libcollections | HeroesGrave | -1204/+0 |
| 2014-02-05 | pull extra::{serialize, ebml} into a separate libserialize crate | Jeff Olson | -0/+27 |
| 2014-01-30 | Remove Times trait | Brendan Zabarauskas | -2/+2 |
| 2014-01-29 | Removing do keyword from libextra | Scott Lawrence | -2/+2 |
| 2014-01-28 | syntax: make deriving have slightly less cryptic error messages. | Huon Wilson | -1/+5 |
| 2014-01-26 | Fix privacy fallout from previous change | Alex Crichton | -4/+4 |
| 2014-01-23 | Update flip() to be rev(). | Sean Chalmers | -7/+7 |
| 2014-01-23 | Rename Invert to Flip - Issue 10632 | Sean Chalmers | -7/+7 |
| 2014-01-21 | [std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behavior | Simon Sapin | -1/+1 |
| 2014-01-21 | [std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behavior | Simon Sapin | -1/+1 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -23/+23 |
| 2014-01-07 | extratest: Fix all leaked trait imports | Alex Crichton | -32/+32 |
| 2014-01-08 | Renamed Option::map_default and mutate_default to map_or and mutate_or_set | Marvin Löbel | -1/+1 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -16/+16 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -2/+2 |
| 2013-11-28 | auto merge of #10519 : nikomatsakis/rust/issue-8624-borrowck-overly-permissiv... | bors | -2/+3 |
| 2013-11-28 | Modify iterators to make them safe with the new rules. | Niko Matsakis | -2/+3 |
| 2013-11-26 | test: Remove all remaining non-procedure uses of `do`. | Patrick Walton | -24/+24 |
| 2013-11-26 | librustuv: Remove all non-`proc` uses of `do` from `libextra` and | Patrick Walton | -16/+16 |
| 2013-11-19 | libextra: Convert uses of `&fn(A)->B` to `|A|->B`. | Patrick Walton | -2/+2 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -2/+2 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -15/+18 |
| 2013-09-30 | extra: Remove usage of fmt! | Alex Crichton | -2/+2 |
| 2013-09-16 | switch Drop to `&mut self` | Daniel Micay | -8/+5 |
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -8/+8 |
| 2013-09-03 | auto merge of #8884 : blake2-ppc/rust/exact-size-hint, r=huonw | bors | -0/+3 |
| 2013-09-01 | std/extra: Add ExactSize for Bitv, DList, RingBuf, Option iterators | blake2-ppc | -0/+3 |
| 2013-08-29 | extra::dlist: Fix bug in Eq::ne | blake2-ppc | -1/+5 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -9/+9 |
| 2013-08-15 | std: Move the iterator param on FromIterator and Extendable to the method. | Huon Wilson | -5/+4 |
| 2013-08-12 | auto merge of #8400 : blake2-ppc/rust/seq-ord, r=cmr | bors | -3/+61 |
| 2013-08-10 | std: Iterator.len_ -> .len | Erick Tryzelaar | -4/+4 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -7/+7 |
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -14/+14 |
| 2013-08-08 | extra::dlist: Use iterator::order for sequence ordering | blake2-ppc | -3/+61 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -10/+10 |
| 2013-08-04 | extra: Don't recurse in DList drop glue. #8295 | Brian Anderson | -4/+38 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -9/+9 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -2/+1 |
| 2013-08-01 | std: Change `Times` trait to use `do` instead of `for` | blake2-ppc | -1/+1 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -8/+8 |
| 2013-07-30 | extra: Implement iterator::Extendable | blake2-ppc | -2/+8 |
| 2013-07-29 | std: Rename Iterator adaptor types to drop the -Iterator suffix | blake2-ppc | -4/+4 |
| 2013-07-27 | Remove dummy type parameters from iterator adaptors | blake2-ppc | -4/+3 |
| 2013-07-23 | dlist: Rename rotate methods to .rotate_forward() and .rotate_backward() | blake2-ppc | -15/+15 |
| 2013-07-22 | dlist: Fix .peek_next() w.r.t double ended iterators | blake2-ppc | -1/+6 |
| 2013-07-21 | dlist: Remove extraneous unwrap in .pop_back_node() | blake2-ppc | -3/+3 |
| 2013-07-21 | dlist: Use Ord for .insert_ordered() | blake2-ppc | -3/+2 |
| 2013-07-21 | dlist: Remove bench tests for vec | blake2-ppc | -37/+1 |
| 2013-07-21 | dlist: Add bench test for rotate_to_{front, back} | blake2-ppc | -0/+19 |