| Age | Commit message (Expand) | Author | Lines |
| 2012-04-25 | More slice use in vec, io, str, ebml, metadata encoder and decoder. | Graydon Hoare | -17/+32 |
| 2012-04-23 | Allow classes to be cast to ifaces that are in the same crate | Tim Chevalier | -1/+1 |
| 2012-04-20 | Add vec::unpack_slice, expose str::unpack_slice. | Graydon Hoare | -0/+10 |
| 2012-04-12 | Annotate FIXMEs in core::vec | Tim Chevalier | -3/+4 |
| 2012-04-06 | Convert old-style for loops to new-style | Marijn Haverbeke | -1/+1 |
| 2012-03-29 | core: Add each, eachi to vec::extensions | Brian Anderson | -0/+6 |
| 2012-03-29 | core: Add extension methods for vec | Brian Anderson | -5/+172 |
| 2012-03-29 | stdlib: Remove the now-obsolete vec::alloc_len in favor of vec::capacity | Patrick Walton | -8/+1 |
| 2012-03-29 | rustc: Add a vec::alloc_len and fix arena logic to use it | Patrick Walton | -0/+8 |
| 2012-03-29 | core: Don't call into the runtime to reserve if we have capacity | Brian Anderson | -1/+4 |
| 2012-03-29 | core: Add vec::capacity | Brian Anderson | -0/+19 |
| 2012-03-29 | core: Add and use vec::reserve_at_least | Brian Anderson | -3/+22 |
| 2012-03-29 | core: Clarify docs on vec::reserve | Brian Anderson | -1/+1 |
| 2012-03-27 | Move some code over to iterator-for to see how it performs. | Marijn Haverbeke | -12/+12 |
| 2012-03-27 | Add vec::each, vec::eachi, and list::each | Marijn Haverbeke | -1/+29 |
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -14/+14 |
| 2012-03-26 | Improve type inference to compute LUB/GLB | Niko Matsakis | -10/+4 |
| 2012-03-23 | Implement new inference algorithm. | Niko Matsakis | -5/+21 |
| 2012-03-22 | make --enforce-mut-vars always on, add mut annotations to remaining files | Niko Matsakis | -36/+36 |
| 2012-03-21 | rustc: Replace intrinsic vec_len with unsafe Rust code | Marijn Haverbeke | -6/+4 |
| 2012-03-20 | Implement an initial version of placement new. | Niko Matsakis | -7/+7 |
| 2012-03-20 | core: Rename unsafe::leak to unsafe::forget. Closes #2031 | Brian Anderson | -2/+2 |
| 2012-03-18 | core: Rename vec::*_from to _between to match str mod | Brian Anderson | -86/+86 |
| 2012-03-18 | core: Rename vec::position_elt to position_elem | Brian Anderson | -10/+10 |
| 2012-03-18 | core: Add vec::unshift | Brian Anderson | -0/+12 |
| 2012-03-18 | core: Don't require a copyable T for vec::push | Brian Anderson | -1/+1 |
| 2012-03-18 | core: Improve the docs and signature of vec::iter2 | Brian Anderson | -4/+12 |
| 2012-03-18 | core: vec::filter_map doesn't require a copyable T | Brian Anderson | -1/+1 |
| 2012-03-17 | core: Don't copy elements in filter_map | Brian Anderson | -2/+2 |
| 2012-03-16 | core: Resolve and remove some FIXMEs | Brian Anderson | -8/+1 |
| 2012-03-16 | std: Add a function to iterate over a subset of a vec | Erick Tryzelaar | -3/+19 |
| 2012-03-15 | core: Docs | Brian Anderson | -3/+12 |
| 2012-03-13 | implement deserialization, rename mk_mem_buffer() to mem_buffer() | Niko Matsakis | -0/+1 |
| 2012-03-13 | first (functional) version of the auto_serialize syntax ext | Niko Matsakis | -1/+1 |
| 2012-03-13 | get new decorator extensions working | Niko Matsakis | -0/+8 |
| 2012-03-13 | Overhaul constructor naming in libs | Brian Anderson | -15/+15 |
| 2012-03-12 | Libc/os/run/rand/io reorganization. Close #1373. Close #1638. | Graydon Hoare | -4/+4 |
| 2012-03-10 | core: Remove the nearly empty math module | Brian Anderson | -1/+1 |
| 2012-03-10 | core Remove vec::enum_chars/uint. Closes #1955 | Brian Anderson | -22/+0 |
| 2012-03-10 | core: Rename vec::tail_n to vec::tailn to match other fns | Brian Anderson | -2/+2 |
| 2012-03-10 | core: Clean up comments and exports | Brian Anderson | -0/+72 |
| 2012-03-09 | core: Convert to rustdoc | Brian Anderson | -403/+150 |
| 2012-03-08 | Rename last to last_opt, last_unsafe to last | Tim Chevalier | -16/+13 |
| 2012-03-08 | Rename last_total to last_unsafe | Tim Chevalier | -5/+6 |
| 2012-03-07 | add mutability annotations to libcore | Niko Matsakis | -49/+51 |
| 2012-03-05 | rewrite vec to be more unsafe, more inlined | Niko Matsakis | -2/+17 |
| 2012-03-02 | First cut at consolidated core::os module built on core::libc. | Graydon Hoare | -0/+4 |
| 2012-03-02 | core: Remove _mut functions from vec | Brian Anderson | -86/+20 |
| 2012-02-29 | core: Change a number of arguments in vec to const vecs | Brian Anderson | -31/+32 |
| 2012-02-28 | libcore: Remove vec::to_ptr in favor of vec::unsafe::to_ptr. Closes #1829. | Patrick Walton | -11/+4 |