| Age | Commit message (Expand) | Author | Lines |
| 2013-03-11 | core: Add rt mod and add the new scheduler code | Brian Anderson | -0/+38 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -15/+15 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -8/+8 |
| 2013-03-05 | auto merge of #5212 : thestinger/rust/iter, r=graydon | bors | -11/+15 |
| 2013-03-04 | Adding missing imports for tests, and gate off others | Alex Crichton | -0/+3 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -3/+0 |
| 2013-03-03 | replace option::iter with a BaseIter impl | Daniel Micay | -11/+15 |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -3/+3 |
| 2013-02-27 | Turn old `drop` blocks into `Drop` traits | Ben Striegel | -1/+4 |
| 2013-02-27 | librustc: Forbid `pub` or `priv` before trait implementations | Patrick Walton | -1/+1 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -5/+5 |
| 2013-02-15 | rustpkg: Massage for landing. | Graydon Hoare | -1/+29 |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -21/+21 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -5/+5 |
| 2013-02-10 | make Option's iter method use a lifetime | Daniel Micay | -2/+2 |
| 2013-02-07 | make Option's map and map_default use a lifetime | Daniel Micay | -5/+5 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -3/+0 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -5/+5 |
| 2013-01-25 | Fix Option camel case in comments | Tyler Bindon | -1/+1 |
| 2013-01-13 | Merge pull request #4465 from thestinger/option | Tim Chevalier | -1/+42 |
| 2013-01-13 | add Option methods for in-place mutation | Daniel Micay | -0/+16 |
| 2013-01-14 | Inlining methods/functions in core. | gifnksm | -0/+14 |
| 2013-01-13 | avoid unwrap in Option::map_consume implementation | Daniel Micay | -1/+1 |
| 2013-01-13 | add Option map_consume_default method | Daniel Micay | -0/+7 |
| 2013-01-13 | add Option methods for swap_unwrap and map_consume | Daniel Micay | -0/+18 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+1 |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the neare... | Patrick Walton | -1/+0 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+1 |
| 2013-01-04 | Rename option::get_default => get_or_default, get_zero => get_or_zero | Tim Chevalier | -7/+7 |
| 2013-01-04 | Add option::get_zero | Tim Chevalier | -0/+20 |
| 2012-12-27 | librustc: Fix the test runner, the condition system, and core test. rs=bustage | Patrick Walton | -0/+2 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -0/+2 |
| 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 |