| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2013-02-21 | Put unique allocs in managed heap when they might contain managed boxes. | Graydon Hoare | -3/+14 |
| 2013-02-20 | auto merge of #5063 : pcwalton/rust/plussing, r=pcwalton | bors | -69/+69 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -69/+69 |
| 2013-02-20 | Changed a test to use intrinsics.rs and changed a few lines that were too lon... | Matthijs 'Thiez' Hofstra | -5/+6 |
| 2013-02-20 | Created libcore/private/intrinsics.rs, which aims to contain every | Matthijs 'Thiez' Hofstra | -20/+14 |
| 2013-02-17 | vec: grow_fn doesn't require Copy | Daniel Micay | -6/+6 |
| 2013-02-15 | auto merge of #4969 : nickdesaulniers/rust/issue3869, r=brson | bors | -65/+59 |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -1/+1 |
| 2013-02-14 | Convert all uses of vec::slice to vec::view Issue #3869 | Nick Desaulniers | -65/+59 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -34/+34 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -41/+41 |
| 2013-02-13 | RIMOV core::vec | Ben Striegel | -45/+15 |
| 2013-02-12 | Adjust borrow checker algorithm to address #4856 unsoundness, | Niko Matsakis | -6/+11 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -20/+84 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -42/+42 |
| 2013-01-31 | Cleanup FIXMEs (#3488) | Seo Sanghyeon | -7/+3 |
| 2013-01-29 | librustc: Long lines. rs=burning | Patrick Walton | -1/+1 |
| 2013-01-29 | librustc: Speed up byte copy operations. r=nmatsakis | Patrick Walton | -0/+7 |
| 2013-01-24 | remove remaining is_not_empty functions/methods | Daniel Micay | -11/+0 |
| 2013-01-24 | implement Mutable trait for vec | Daniel Micay | -1/+14 |
| 2013-01-24 | replace ConstVector trait with the Container trait | Daniel Micay | -12/+4 |
| 2013-01-24 | convert most of libcore records into structs | Erick Tryzelaar | -2/+2 |
| 2013-01-24 | librustc: Allow `&mut` to be loaned; allow `self` to be loaned; make `&mut` l... | Patrick Walton | -6/+13 |
| 2013-01-23 | libsyntax: Remove `fn() unsafe { ... }`. r=graydon | Patrick Walton | -84/+96 |
| 2013-01-23 | core: Rename to_mut and from_mut to cast_to_mut and cast_from_mut | Trinick | -8/+8 |
| 2013-01-21 | docs: Fix typo | Tim Chevalier | -1/+1 |
| 2013-01-21 | Update documentation with examples for various int, vec methods. | William Ting | -2/+36 |
| 2013-01-18 | Rename copy_overlapping_memory() to copy_memory() | Chris Peterson | -31/+1 |
| 2013-01-17 | librustc: Implement write guards for borrowing `@mut` to `&` or `&mut`. r=nma... | Patrick Walton | -12/+12 |
| 2013-01-14 | Merge pull request #4485 from sanxiyn/use-truncate | Brian Anderson | -3/+2 |
| 2013-01-14 | Use vec::truncate for vec::retain | Seo Sanghyeon | -3/+2 |
| 2013-01-14 | Add a test for vec::retain | Seo Sanghyeon | -0/+7 |
| 2013-01-13 | Long lines | Tim Chevalier | -3/+6 |
| 2013-01-13 | Merge pull request #4411 from wting/4203_rename_memcpy | Tim Chevalier | -16/+16 |
| 2013-01-13 | Make vectors (& old ports) of zero-size types allocate one byte each. | Jed Davis | -10/+22 |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -3/+3 |
| 2013-01-10 | core: Change XXXs into proper FIXMEs with issue numbers | Tim Chevalier | -4/+4 |
| 2013-01-10 | Rename memcpy, memmove, memset to prevent any confusion with the C equivalents. | William Ting | -16/+16 |