| Age | Commit message (Expand) | Author | Lines |
| 2013-04-18 | add dropwhile and takewhile iterators | Daniel Micay | -9/+29 |
| 2013-04-18 | libcore: add an EnumerateIterator, like Python's `enumerate`. | Huon Wilson | -0/+10 |
| 2013-04-17 | vec: add an external iterator | Daniel Micay | -1/+54 |
| 2013-04-16 | libcore: vec::windowed iterates, not allocates. | Huon Wilson | -16/+41 |
| 2013-04-10 | core: changes in response to #5656 | Niko Matsakis | -0/+195 |
| 2013-04-08 | Removing no longer needed unsafe blocks | Alex Crichton | -48/+33 |
| 2013-04-03 | Removing mut fields from vec.rs, at_vec.rs, str.rs, unstable.rs, and cell.rs. | Matthijs Hofstra | -6/+6 |
| 2013-03-29 | Merge remote-tracking branch 'remotes/origin/incoming' into serial | Erick Tryzelaar | -348/+348 |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -348/+348 |
| 2013-03-29 | Merge remote-tracking branch 'remotes/origin/incoming' into serial | Erick Tryzelaar | -1/+3 |
| 2013-03-29 | core: add consume_reverse | Erick Tryzelaar | -0/+28 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+3 |
| 2013-03-27 | add a TotalEq trait | Daniel Micay | -9/+37 |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -34/+35 |
| 2013-03-26 | librustc: Remove all uses of the old `[T * N]` fixed-length vector syntax | Patrick Walton | -1/+1 |
| 2013-03-26 | libcore: Change `[const T]` to `const [T]` everywhere | Patrick Walton | -23/+23 |
| 2013-03-26 | Spelling fixes; replaced `size` with `capacity` in few places. | Felix S. Klock II | -3/+3 |
| 2013-03-25 | auto merge of #5525 : dbaupp/rust/minor_fixups, r=graydon | bors | -1/+0 |
| 2013-03-25 | Kill some warnings: unused imports and old #[deny(..)]s. | Huon Wilson | -1/+0 |
| 2013-03-23 | replace impls with `deriving` where applicable | Andrew Paseltiner | -6/+1 |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -231/+228 |
| 2013-03-21 | back-renamed slice_DBG_BRWD, slice_V_DBG_BRWD -> slice, slice_DBG_UNIQ -> sli... | Marvin Löbel | -4/+4 |
| 2013-03-21 | renamed str::view -> slice_DBG_BRWD | Marvin Löbel | -12/+14 |
| 2013-03-19 | core: rename vec::rev_each{,i} to vec::each{,i}_reverse | Erick Tryzelaar | -10/+33 |
| 2013-03-18 | librustc: Make the compiler ignore purity. | Patrick Walton | -4/+19 |
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime notation.... | Patrick Walton | -57/+57 |
| 2013-03-15 | impl Clone for ~T, ~[T], ~str | Ben Striegel | -0/+13 |
| 2013-03-14 | auto merge of #5369 : thestinger/rust/iter, r=z0w0 | bors | -5/+26 |
| 2013-03-13 | add a trait for mutable iterators | Daniel Micay | -5/+26 |
| 2013-03-14 | Remove unused import in core | ILyoan | -4/+2 |
| 2013-03-11 | core: fix broken tests on windows | Jeff Olson | -0/+1 |
| 2013-03-11 | core: Add vec::raw::mut_buf_as_slice | Brian Anderson | -0/+14 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -112/+114 |
| 2013-03-09 | vec: cleanup | Daniel Micay | -219/+218 |
| 2013-03-09 | vec: renovate the BaseIter impl | Daniel Micay | -27/+9 |
| 2013-03-07 | test: Fix tests. | Patrick Walton | -4/+8 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -358/+358 |
| 2013-03-07 | libcore: Remove `extern mod { ... }` from libcore. rs=deexterning | Patrick Walton | -10/+16 |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -16/+16 |
| 2013-03-05 | core: convert vec::{last,last_opt} to return references | Erick Tryzelaar | -22/+39 |
| 2013-03-05 | core: convert vec::{init,initn} to return references | Erick Tryzelaar | -22/+48 |
| 2013-03-05 | core: convert vec::{tail,tailn} to return references | Erick Tryzelaar | -18/+39 |
| 2013-03-05 | core: convert vec::{head,head_opt} to return references | Erick Tryzelaar | -9/+43 |
| 2013-03-05 | libcore: Implement an `Equiv` trait and use it on hashmaps. | Patrick Walton | -1/+7 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -1/+0 |
| 2013-03-02 | auto merge of #5196 : thestinger/rust/ord, r=catamorphism | bors | -9/+50 |
| 2013-03-02 | add a TotalOrd trait | Daniel Micay | -9/+50 |
| 2013-03-01 | Rename core::private to core::unstable. #4743 | Brian Anderson | -4/+4 |
| 2013-02-28 | Fix implicit leaks of imports throughout libraries | Alex Crichton | -1/+2 |
| 2013-02-27 | libsyntax: Forbid mutable vectors. rs=demuting | Patrick Walton | -37/+8 |