| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2013-08-01 | std: Remove the internal iterator methods from trait Set | blake2-ppc | -22/+0 |
| 2013-08-01 | std: Replace `for` with `do { .. }` expr where internal iterators are used | blake2-ppc | -19/+16 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -17/+18 |
| 2013-07-30 | std: Implement Extendable for hashmap, str and trie | blake2-ppc | -9/+17 |
| 2013-07-29 | std: Rename Iterator adaptor types to drop the -Iterator suffix | blake2-ppc | -3/+3 |
| 2013-07-28 | Refactored vec and str iterators to remove prefixes | jmgrosen | -2/+2 |
| 2013-07-27 | auto merge of #8074 : thestinger/rust/iterator, r=cmr | bors | -2/+2 |
| 2013-07-27 | Remove dummy type parameters from iterator adaptors | blake2-ppc | -2/+2 |
| 2013-07-25 | Added default impls for container methods | Steven Fackler | -19/+0 |
| 2013-07-21 | Minor cleanup of hashmap | Steven Stewart-Gallus | -11/+5 |
| 2013-07-20 | std: Implement Clone for VecIterator and iterators using it | blake2-ppc | -0/+2 |
| 2013-07-20 | Use Option .take() or .take_unwrap() instead of util::replace where possible | blake2-ppc | -2/+2 |