| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2013-07-30 | auto merge of #8121 : thestinger/rust/offset, r=alexcrichton | bors | -16/+16 |
| 2013-07-30 | implement pointer arithmetic with GEP | Daniel Micay | -16/+16 |
| 2013-07-29 | auto merge of #7223 : steveklabnik/rust/vec_initial_docs, r=pcwalton | bors | -1/+47 |
| 2013-07-30 | std: Remove macro in vec that's only used once | blake2-ppc | -17/+12 |
| 2013-07-30 | std: Remove RandomAccessIterator impl for VecMutIterator | blake2-ppc | -4/+4 |
| 2013-07-29 | Adding an initial description to vec.rs. | Steve Klabnik | -1/+47 |
| 2013-07-29 | std: Rename Iterator adaptor types to drop the -Iterator suffix | blake2-ppc | -2/+2 |
| 2013-07-28 | Refactored vec and str iterators to remove prefixes | jmgrosen | -40/+40 |
| 2013-07-27 | Change concurrency primitives to standard naming conventions | Steven Stewart-Gallus | -3/+3 |
| 2013-07-27 | iterator: add an Extendable trait | Daniel Micay | -1/+12 |
| 2013-07-27 | vec: replace some `as_mut_buf` with `to_mut_ptr` | Daniel Micay | -12/+10 |
| 2013-07-27 | Remove dummy type parameters from iterator adaptors | blake2-ppc | -2/+2 |
| 2013-07-27 | vec: add mut_slice_{to,from} | Daniel Micay | -0/+23 |
| 2013-07-26 | Consolidate raw representations of rust values | Alex Crichton | -87/+58 |
| 2013-07-24 | auto merge of #7996 : erickt/rust/cleanup-strs, r=erickt | bors | -7/+5 |
| 2013-07-24 | Change 'print(fmt!(...))' to printf!/printfln! in src/lib* | Birunthan Mohanathas | -2/+2 |
| 2013-07-24 | add a RandomAccessIterator trait | Daniel Micay | -2/+64 |
| 2013-07-23 | std: inline str::with_capacity and vec::with_capacity | Erick Tryzelaar | -0/+1 |
| 2013-07-23 | std: simplify str::as_imm_buf and vec::as_{imm,mut}_buf | Erick Tryzelaar | -7/+4 |
| 2013-07-22 | auto merge of #7943 : Dretch/rust/vec-slice-from-to, r=huonw | bors | -3/+47 |
| 2013-07-22 | new snapshot | Daniel Micay | -117/+0 |
| 2013-07-21 | Add slice_from and slice_to methods for vec, like the | Gareth Smith | -3/+47 |
| 2013-07-20 | std: Implement Clone for VecIterator and iterators using it | blake2-ppc | -0/+17 |
| 2013-07-20 | Use Option .take() or .take_unwrap() instead of util::replace where possible | blake2-ppc | -4/+2 |
| 2013-07-18 | Fix warnings in libstd and librusti tests | blake2-ppc | -1/+1 |
| 2013-07-17 | test: Fix tests. | Patrick Walton | -1/+1 |
| 2013-07-17 | test: Fix tests. | Patrick Walton | -2/+0 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -39/+39 |
| 2013-07-15 | remove headers from unique vectors | Daniel Micay | -8/+98 |