| Age | Commit message (Expand) | Author | Lines |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -1422/+0 |
| 2014-02-21 | std: rewrite Hash to make it more generic | Erick Tryzelaar | -1/+1 |
| 2014-02-20 | Mass rename if_ok! to try! | Alex Crichton | -6/+6 |
| 2014-02-14 | Register new snapshots | Alex Crichton | -4/+2 |
| 2014-02-13 | Removed num::Orderable | Michael Darakananda | -2/+2 |
| 2014-02-13 | Add some missing Show implementations in libstd | Brendan Zabarauskas | -0/+75 |
| 2014-02-11 | Move replace and swap to std::mem. Get rid of std::util | Edward Wang | -1/+1 |
| 2014-02-04 | Rename reserve to reserve_exact and reserve_at_least to reserve | David Manescu | -3/+3 |
| 2014-02-01 | Remove some unused imports | Brendan Zabarauskas | -1/+0 |
| 2014-02-01 | Make next_power_of_two generic for unsigned integers | Brendan Zabarauskas | -1/+1 |
| 2014-01-22 | hashmap: port to Vec<T> | Daniel Micay | -25/+25 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -37/+37 |
| 2013-12-31 | Fix issue #11216 - Replace std::hashmap::{each_key, each_value} with iterators. | Gareth Smith | -6/+39 |
| 2013-12-29 | auto merge of #11134 : lucab/rust/lucab/libstd-doc, r=cmr | bors | -1/+1 |
| 2013-12-29 | std::hashmap: add an example with the basic methods. | Huon Wilson | -0/+39 |
| 2013-12-27 | std: uniform modules titles for doc | Luca Bruno | -1/+1 |
| 2013-12-27 | std::hashmap: add an example to mangle. | Huon Wilson | -0/+37 |
| 2013-12-16 | vec: make the move iterator fast for all types | Daniel Micay | -8/+5 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -15/+15 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -1/+1 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -9/+7 |
| 2013-11-26 | Removed unneccessary `_iter` suffixes from various APIs | Marvin Löbel | -10/+10 |
| 2013-11-25 | rm #[mutable_doc] | Daniel Micay | -2/+0 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -9/+18 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -8/+8 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -2/+2 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -8/+8 |
| 2013-09-23 | std: merge rand::{Rng,RngUtil} with default methods. | Huon Wilson | -1/+1 |
| 2013-09-19 | Replace unreachable() calls with unreachable!(). | Chris Morgan | -2/+2 |
| 2013-09-14 | auto merge of #9115 : erickt/rust/master, r=erickt | bors | -0/+9 |
| 2013-09-12 | std: add default implementations to HashMap | Erick Tryzelaar | -0/+9 |
| 2013-09-11 | Add HashSet::with_capacity_and_keys() function | Florian Hahn | -0/+11 |
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -2/+2 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -3/+3 |
| 2013-08-15 | std: Move the iterator param on FromIterator and Extendable to the method. | Huon Wilson | -8/+8 |
| 2013-08-14 | auto merge of #8439 : huonw/rust/hashset-clone, r=cmr | bors | -0/+26 |
| 2013-08-10 | std: Iterator.chain_ -> .chain | Erick Tryzelaar | -2/+2 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -2/+2 |
| 2013-08-10 | std: merge Iterator and IteratorUtil | Erick Tryzelaar | -1/+1 |
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -20/+20 |
| 2013-08-10 | std: add a Clone impl for HashSet. | Huon Wilson | -0/+26 |
| 2013-08-07 | std: Fix for-range loops that can use iterators | blake2-ppc | -3/+3 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -2/+2 |
| 2013-08-06 | std: Rewrite the HashSet set operation iterators | blake2-ppc | -37/+17 |
| 2013-08-03 | auto merge of #8264 : thestinger/rust/snapshot, r=Aatch | bors | -20/+20 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -20/+20 |
| 2013-08-03 | auto merge of #8246 : stepancheg/rust/contains-key, r=thestinger | bors | -8/+0 |
| 2013-08-03 | std: expose the keyed HashMap constructor, for runtime-less use. | Huon Wilson | -28/+26 |
| 2013-08-03 | Add default implementation of Map::contains_key function | Stepan Koltsov | -8/+0 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -8/+5 |