| Age | Commit message (Expand) | Author | Lines |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -15/+15 |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -2/+2 |
| 2012-08-30 | libcore: vec::u8::hash is pure. | Erick Tryzelaar | -1/+1 |
| 2012-08-30 | libcore: rewrite vec::unsafe::from_buf in pure rust | Erick Tryzelaar | -7/+5 |
| 2012-08-30 | Start moving core::hash to support a Hash trait. Add to_bytes::IterBytes trait. | Graydon Hoare | -4/+4 |
| 2012-08-30 | cargo: Fix some lack of knowledge of basic algebraic identities | Patrick Walton | -17/+3 |
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -9/+39 |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -34/+46 |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -2/+2 |
| 2012-08-29 | Add vec::truncate, for efficiently shortening a vector. | Jed Davis | -0/+24 |
| 2012-08-27 | make rand code use slices | Niko Matsakis | -1/+1 |
| 2012-08-27 | libcore: Replace a bunch of "== None" with ".is_none()". | Patrick Walton | -43/+43 |
| 2012-08-27 | libcore: Implement equality and ordering on vectors | Patrick Walton | -0/+75 |
| 2012-08-27 | Convert over some residual uses of #oldmacros. | Graydon Hoare | -1/+1 |
| 2012-08-26 | Camel case the option type | Brian Anderson | -137/+137 |
| 2012-08-24 | Add a Buildable interface for constructing general sequences. Work on #2921. | Michael Sullivan | -5/+2 |
| 2012-08-24 | Get rid of the unseemly reinterpret_casts in build_sized implementations. Clo... | Michael Sullivan | -8/+2 |
| 2012-08-23 | More complete fix to #3162 (borrowck bug related to access to rec fields) | Niko Matsakis | -0/+19 |
| 2012-08-23 | Make vec::zip not require T:copy (close #3254) | Ben Blum | -12/+43 |
| 2012-08-23 | Make a bunch more of the iteration functions/methods marked pure. Closes #3253. | Michael Sullivan | -34/+39 |
| 2012-08-22 | Use swap_remove in pipes::select(). Close #3219. | Ben Blum | -0/+1 |
| 2012-08-22 | Add vec::swap_remove (#3219) | Ben Blum | -1/+54 |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -31/+31 |
| 2012-08-13 | core: Camel case some lesser-used modules | Brian Anderson | -2/+2 |
| 2012-08-13 | Stop parsing old operator overloading syntax | Brian Anderson | -18/+0 |
| 2012-08-13 | rustc: Mostly implement region-bounded stack closures | Patrick Walton | -1/+1 |
| 2012-08-09 | de-mode-ify infer and some parts of typeck | Niko Matsakis | -0/+6 |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -11/+11 |
| 2012-08-08 | Implement + for @-vectors. | Michael Sullivan | -2/+2 |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -5/+5 |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -10/+10 |
| 2012-08-02 | Fix an apparent race in pipes. | Eric Holk | -1/+12 |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -13/+13 |
| 2012-08-01 | Convert ret to return | Brian Anderson | -61/+61 |
| 2012-08-01 | core: change vec's ref_set to set_ref, move get_ref to unsafe::get. | Erick Tryzelaar | -20/+26 |
| 2012-07-31 | rustc: Parse by-reference pattern bindings with the "ref" keyword | Patrick Walton | -2/+2 |
| 2012-07-28 | core: More magic to make core build with --test | Brian Anderson | -2/+3 |
| 2012-07-27 | core: Trait-ify various overloaded operators | Patrick Walton | -0/+14 |
| 2012-07-26 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -6/+14 |
| 2012-07-25 | from_fn and ref_set do not require copy bound | Niko Matsakis | -2/+2 |
| 2012-07-24 | Add core::hash containing SipHash-2-4 implementation. Re: #1616 and #859. | Graydon Hoare | -8/+2 |
| 2012-07-24 | Update some str functions to slices, merge as_buf and unpack_slice. | Graydon Hoare | -48/+38 |
| 2012-07-23 | libcore: whitespace cleanup. | Erick Tryzelaar | -1/+0 |
| 2012-07-23 | libcore: add vec memcpy and memmove fns | Erick Tryzelaar | -0/+55 |
| 2012-07-23 | libcore: add vec::{mut_view, const_view}. | Erick Tryzelaar | -1/+25 |
| 2012-07-23 | libcore: Modernize a docstring | Erick Tryzelaar | -1/+1 |
| 2012-07-18 | iterate only over immutable vectors; use newer region notation | Niko Matsakis | -10/+11 |
| 2012-07-17 | Create some infrastructure for building up @-vectors. Work on #2921. | Michael Sullivan | -13/+45 |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -4/+26 |
| 2012-07-17 | dvec/vec interface cleanup: fixing reach, reverse, adding more pure | Ben Blum | -3/+39 |