| Age | Commit message (Expand) | Author | Lines |
| 2012-12-18 | core: use movable self to clean up option/result. | Erick Tryzelaar | -40/+58 |
| 2012-12-13 | Replace some Eq impls with deriving_eq | Brian Anderson | -21/+1 |
| 2012-12-04 | librustc: Implement moves based on type. r=nmatsakis | Patrick Walton | -2/+2 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 2012-11-28 | Register snapshots | Brian Anderson | -24/+0 |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+24 |
| 2012-11-08 | Whitespace | Brian Anderson | -1/+1 |
| 2012-11-08 | Change option::expect to not require a Copy bound, and move instead. | Brian J. Burg | -4/+5 |
| 2012-10-23 | Remove uses of binary move - <- - from tests and libraries | Tim Chevalier | -1/+1 |
| 2012-10-19 | Remove superfluous by-ref in option::get, option::get_default, option::expect | Tim Chevalier | -9/+9 |
| 2012-10-18 | Rename str::to_unique to str::to_owned. | Erick Tryzelaar | -1/+1 |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -6/+6 |
| 2012-10-11 | Write option::chain and result::chain with `match move` | Tim Chevalier | -5/+3 |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -2/+1 |
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -2/+2 |
| 2012-10-04 | core: Improve option docs a little | Brian Anderson | -31/+105 |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -17/+15 |
| 2012-10-01 | Attempt to fix option::test_unwrap_str breakage. | Graydon Hoare | -4/+4 |
| 2012-10-01 | De-export option and option_iter. Part of #3583. | Graydon Hoare | -19/+21 |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -4/+4 |
| 2012-09-28 | core: Demode patterns | Brian Anderson | -5/+5 |
| 2012-09-27 | core: More option demoding | Brian Anderson | -18/+9 |
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -23/+5 |
| 2012-09-25 | Check more things with deprecated_modes | Brian Anderson | -1/+1 |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -22/+0 |
| 2012-09-23 | core: Demode option | Brian Anderson | -27/+31 |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -3/+3 |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+23 |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -3/+3 |
| 2012-09-10 | Make moves explicit in task; also make option::unwrap take its argument by move | Tim Chevalier | -4/+6 |
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -10/+10 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -4/+4 |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 |
| 2012-09-04 | core: Remove struct ctors | Brian Anderson | -1/+7 |
| 2012-09-02 | core: warn(non_camel_case_types) everywhere, with few exceptions | Brian Anderson | -2/+2 |
| 2012-08-27 | rustc: Implement equality for option types | Patrick Walton | -0/+21 |
| 2012-08-26 | Camel case the option type | Brian Anderson | -63/+63 |
| 2012-08-25 | Implement option::unwrap safely...! | Ben Blum | -16/+11 |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -1/+1 |
| 2012-08-20 | core: adding option::or, a function to return the leftmost of two some() valu... | Daniel Patterson | -0/+10 |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 |
| 2012-08-16 | Add option::get_ref | Ben Blum | -0/+16 |
| 2012-08-14 | De-mode task.rs and add some option::foo_ref() helpers | Ben Blum | -3/+51 |
| 2012-08-13 | core: Camel case some lesser-used modules | Brian Anderson | -1/+1 |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -2/+2 |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -9/+9 |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -10/+13 |
| 2012-08-03 | Be more defensive in pipes (#3098) | Eric Holk | -2/+2 |
| 2012-08-02 | option::swap_unwrap, the ubiquitous 'option dance'. | Ben Blum | -2/+27 |