| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2013-07-18 | auto merge of #7857 : blake2-ppc/rust/fix-test-warnings, r=alexcrichton | bors | -2/+2 |
| 2013-07-18 | hashmap: Remove .consume() has rename .consume_iter() to .consume() | blake2-ppc | -64/+20 |
| 2013-07-18 | Fix warnings in libstd and librusti tests | blake2-ppc | -2/+2 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -6/+15 |
| 2013-07-16 | hashmap: Iterators for hashset diff, sym. diff, intersec, union | blake2-ppc | -10/+70 |
| 2013-07-16 | hashmap: Remove .mutate_values() which is replaced by .mut_iter() | blake2-ppc | -13/+0 |
| 2013-07-15 | std: add consuming iterators for `HashMap` and `HashSet` | Andrew Paseltiner | -0/+82 |
| 2013-07-14 | auto merge of #7788 : MarkJr94/rust/from_iter, r=cmr | bors | -1/+49 |
| 2013-07-14 | Stripped trailing spaces; Implemented FromIterator for TreeMap and PriorityQueue | =Mark Sinclair | -4/+4 |
| 2013-07-14 | Implemented FromIterator for TrieMap and TrieSet | =Mark Sinclair | -0/+25 |
| 2013-07-14 | Implemented FromIterator for std::hashmap | =Mark Sinclair | -1/+24 |
| 2013-07-13 | Split mutable methods out of Set and Map | Steven Fackler | -9/+13 |
| 2013-07-08 | Replaces the free-standing functions in f32, &c. | Jens Nockert | -1/+2 |
| 2013-07-04 | Implement consuming iterators for ~[], remove vec::{consume, consume_reverse,... | Huon Wilson | -3/+4 |
| 2013-06-30 | Convert vec::{rposition, rposition_elem, position_elem, contains} to methods. | Huon Wilson | -5/+5 |
| 2013-06-29 | Removing a lot of usage of '&const' | Alex Crichton | -4/+4 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -2/+3 |
| 2013-06-25 | remove `each` from vec, HashMap and HashSet | Daniel Micay | -11/+0 |
| 2013-06-25 | container: remove internal iterators from Map | Daniel Micay | -28/+28 |
| 2013-06-23 | hashmap: add FIXME number | Daniel Micay | -1/+1 |
| 2013-06-23 | std::hashmap: Remove BaseIter impl for HashSet | blake2-ppc | -7/+6 |
| 2013-06-23 | std::hashmap: Use .iter() instead of .each and similar | blake2-ppc | -8/+7 |