| Age | Commit message (Expand) | Author | Lines |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -3/+3 |
| 2014-01-23 | Update flip() to be rev(). | Sean Chalmers | -11/+11 |
| 2014-01-23 | Rename Invert to Flip - Issue 10632 | Sean Chalmers | -11/+11 |
| 2014-01-22 | vec: make unsafe indexing functions higher-level | Daniel Micay | -6/+6 |
| 2014-01-22 | Replace C types with Rust types in libstd, closes #7313 | Florian Hahn | -5/+4 |
| 2014-01-21 | [std::vec] Rename .remove_opt() to .remove(), drop the old .remove() behavior | Simon Sapin | -47/+13 |
| 2014-01-21 | [std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behavior | Simon Sapin | -23/+8 |
| 2014-01-21 | [std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behavior | Simon Sapin | -25/+6 |
| 2014-01-21 | [std::vec] Rename .last_opt() to .last(), drop the old .last() behavior | Simon Sapin | -28/+5 |
| 2014-01-21 | [std::vec] Rename .head_opt() to .head(), drop the old .head() behavior | Simon Sapin | -28/+5 |
| 2014-01-21 | [std::vec] Rename .get_opt() to .get() | Simon Sapin | -6/+6 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -71/+71 |
| 2014-01-17 | auto merge of #11585 : nikomatsakis/rust/issue-3511-rvalue-lifetimes, r=pcwalton | bors | -0/+29 |
| 2014-01-15 | Remove FIXMEs and add license | Niko Matsakis | -1/+1 |
| 2014-01-15 | Issue #3511 - Rationalize temporary lifetimes. | Niko Matsakis | -1/+30 |
| 2014-01-15 | register snapshots | Daniel Micay | -144/+0 |
| 2014-01-14 | add implementation of `Repr` for `~[T]` | Daniel Micay | -1/+1 |
| 2014-01-14 | remove reference counting headers from ~ | Daniel Micay | -1/+98 |
| 2014-01-12 | Removed remnants of `@mut` and `~mut` from comments and the type system. | Eduard Burtescu | -5/+2 |
| 2014-01-11 | Remove re-exports of std::io::stdio::{print, println} in the prelude. | Brendan Zabarauskas | -1/+1 |
| 2014-01-08 | auto merge of #11370 : alexcrichton/rust/issue-10465, r=pwalton | bors | -8/+8 |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -6/+4 |
| 2014-01-07 | std: Fill in all missing imports | Alex Crichton | -2/+4 |
| 2014-01-07 | 'borrowed pointer' -> 'reference' | Brian Anderson | -1/+1 |
| 2013-12-29 | Add method .as_mut_slice() to MutableVector | Kevin Ballard | -0/+6 |
| 2013-12-27 | std: uniform modules titles for doc | Luca Bruno | -1/+1 |
| 2013-12-26 | auto merge of #11127 : huonw/rust/vec-docs, r=alexcrichton | bors | -27/+115 |
| 2013-12-24 | std: Get stdtest all passing again | Alex Crichton | -1/+0 |
| 2013-12-25 | std::vec: clarify & examplify more docs. | Huon Wilson | -16/+79 |
| 2013-12-25 | std::vec: correct .sort()'s doc-string and add some | Huon Wilson | -11/+36 |
| 2013-12-23 | std: Fix all code examples | Alex Crichton | -5/+3 |
| 2013-12-22 | auto merge of #11082 : brson/rust/noat, r=alexcrichton | bors | -21/+28 |
| 2013-12-22 | auto merge of #11064 : huonw/rust/vec-sort, r=alexcrichton | bors | -1/+295 |
| 2013-12-22 | std::vec: make the sorting closure use `Ordering` rather than just being | Huon Wilson | -54/+32 |
| 2013-12-21 | std: Remove some @-boxes | Brian Anderson | -21/+28 |
| 2013-12-20 | Update next() and size_hint() for MutSpliterIterator | Palmer Cox | -11/+8 |
| 2013-12-20 | Remove remainder field from MutChunkIter | Palmer Cox | -13/+10 |
| 2013-12-21 | std::vec: add a sugary .sort() method for plain Ord sorting. | Huon Wilson | -6/+63 |
| 2013-12-19 | auto merge of #11071 : huonw/rust/quiet-test, r=cmr | bors | -15/+2 |
| 2013-12-20 | std::vec: implement a stable merge sort, deferring to insertion sort for | Huon Wilson | -1/+260 |
| 2013-12-20 | std: silence warnings when compiling test. | Huon Wilson | -15/+2 |
| 2013-12-19 | auto merge of #11061 : huonw/rust/opt-unsafe-vec, r=alexcrichton | bors | -48/+105 |
| 2013-12-19 | std::vec: use some unsafe code to optimise `remove`. | Huon Wilson | -39/+74 |
| 2013-12-19 | std::vec: replace .insert with a small amount of unsafe code. | Huon Wilson | -9/+31 |
| 2013-12-19 | std::vec: remove .as_muf_buf, replaced by .as_mut_ptr & .len. | Huon Wilson | -44/+20 |
| 2013-12-19 | std::vec: remove .as_imm_buf, replaced by .as_ptr & .len. | Huon Wilson | -38/+10 |
| 2013-12-17 | auto merge of #10998 : thestinger/rust/iter, r=alexcrichton | bors | -4/+2 |
| 2013-12-17 | auto merge of #10996 : huonw/rust/more-vec-raw, r=cmr | bors | -86/+64 |
| 2013-12-17 | std::vec: make init_elem nicer by doing fewer moves. | Huon Wilson | -5/+1 |
| 2013-12-17 | std::vec: convert .copy_memory to use copy_nonoverlapping_memory. | Huon Wilson | -5/+5 |