| Age | Commit message (Expand) | Author | Lines |
| 2013-09-10 | std::vec: Update module doc text | blake2-ppc | -19/+60 |
| 2013-09-10 | std::vec: Replace each_permutation with a new Permutations iterator | blake2-ppc | -119/+165 |
| 2013-09-10 | std::vec: Change fn unzip to take an iterator argument | blake2-ppc | -27/+9 |
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -10/+10 |
| 2013-09-05 | std: Remove push_fast from OwnedVector. Closes #8769 | Brian Anderson | -22/+21 |
| 2013-09-03 | auto merge of #8884 : blake2-ppc/rust/exact-size-hint, r=huonw | bors | -42/+5 |
| 2013-09-01 | std::iterator: Use ExactSize, inheriting DoubleEndedIterator | blake2-ppc | -2/+2 |
| 2013-09-01 | std::iterator: Add back .rposition() test | blake2-ppc | -10/+0 |
| 2013-08-31 | repr: remove trailing {} from unit-like structs | Daniel Micay | -2/+2 |
| 2013-08-31 | repr: print the name of structs | Daniel Micay | -2/+4 |
| 2013-08-30 | std: Implement .rposition() on double-ended iterators with known size | blake2-ppc | -34/+4 |
| 2013-08-30 | std::iterator: Introduce trait ExactSizeHint | blake2-ppc | -0/+3 |
| 2013-08-27 | Remove offset_inbounds for an unsafe offset function | Alex Crichton | -4/+4 |
| 2013-08-27 | librustc: Remove `&const` and `*const` from the language. | Patrick Walton | -8/+1 |
| 2013-08-27 | vec: implement `DeepClone` | Daniel Micay | -2/+9 |
| 2013-08-26 | std: Make vec::from_elem failure-safe | Brian Anderson | -4/+30 |
| 2013-08-26 | std: Make vec::from_fn failure-safe | Brian Anderson | -4/+8 |
| 2013-08-24 | auto merge of #8701 : brson/rust/issue-8698, r=thestinger | bors | -8/+4 |
| 2013-08-24 | std: Make vec::push_all_move call reserve_at_least | Brian Anderson | -1/+1 |
| 2013-08-23 | Fix some vector function failure tests. Closes #8698 | Brian Anderson | -8/+4 |
| 2013-08-22 | Disabled broken tests in std::vec. | Vadim Chugunov | -0/+4 |
| 2013-08-22 | Enabled unit tests in std and extra. | Vadim Chugunov | -20/+0 |
| 2013-08-21 | auto merge of #8604 : kballard/rust/iter-size-hint, r=graydon | bors | -1/+69 |
| 2013-08-20 | vec: add `shrink_to_fit` | Daniel Micay | -0/+26 |
| 2013-08-18 | Implement .size_hint() on new vec iterators | Kevin Ballard | -1/+69 |
| 2013-08-16 | doc: correct spelling in documentation. | Huon Wilson | -2/+2 |
| 2013-08-15 | vec: rm redundant is_empty implementations | Daniel Micay | -12/+0 |
| 2013-08-15 | vec: rm obsolete zip and zip_slice | Daniel Micay | -41/+1 |
| 2013-08-15 | auto merge of #8490 : huonw/rust/fromiterator-extendable, r=catamorphism | bors | -4/+4 |
| 2013-08-15 | std: Move the iterator param on FromIterator and Extendable to the method. | Huon Wilson | -4/+4 |
| 2013-08-14 | Methodyfied the string ascii extionsion functions | Marvin Löbel | -3/+31 |
| 2013-08-12 | Forbid pub/priv where it has no effect | Alex Crichton | -8/+8 |
| 2013-08-12 | auto merge of #8400 : blake2-ppc/rust/seq-ord, r=cmr | bors | -24/+22 |
| 2013-08-11 | vec: optimize the Add implementation | Daniel Micay | -5/+14 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -3/+3 |
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -20/+20 |
| 2013-08-08 | std::vec: Fix typo in fn ne | blake2-ppc | -1/+1 |
| 2013-08-08 | std::vec: Use iterator::order functions for Eq, Ord, TotalOrd, TotalEq | blake2-ppc | -24/+22 |
| 2013-08-07 | std: Fix for-range loops that can use iterators | blake2-ppc | -2/+2 |
| 2013-08-06 | vec: use `offset_inbounds` for iterators | Daniel Micay | -4/+4 |
| 2013-08-06 | vec: avoid `ptrtoint`/`inttoptr` in the iterators | Daniel Micay | -8/+18 |
| 2013-08-06 | std: Fix bug in ChunkIter::idx | blake2-ppc | -1/+4 |
| 2013-08-06 | std: Improve vec::ChunkIter | blake2-ppc | -8/+51 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -4/+2 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -35/+35 |
| 2013-08-03 | std: add benchmark for vec.mut_iter. | Huon Wilson | -0/+13 |
| 2013-08-03 | std: use ptr.offset where possible in the vec iterator. | Huon Wilson | -8/+38 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -4/+4 |
| 2013-08-01 | std: Replace `for` with `do { .. }` expr where internal iterators are used | blake2-ppc | -14/+19 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -29/+30 |