| Age | Commit message (Expand) | Author | Lines |
| 2014-02-01 | auto merge of #11930 : bjz/rust/next_power_of_two, r=huonw | bors | -2/+2 |
| 2014-01-31 | Fix minor doc typos | Virgile Andreani | -1/+1 |
| 2014-01-31 | Introduce marker types for indicating variance and for opting out | Niko Matsakis | -9/+10 |
| 2014-02-01 | Make next_power_of_two generic for unsigned integers | Brendan Zabarauskas | -2/+2 |
| 2014-01-30 | Make mut_last return Option instead of failing on empty vector (and add a tes... | Nathaniel Herman | -4/+14 |
| 2014-01-30 | Make pop_ref and mut_pop_ref return Option instead of failing on empty vectors | Nathaniel Herman | -24/+20 |
| 2014-01-30 | Make shift_ref and mut_shift_ref return Option instead of failing | Nathaniel Herman | -24/+20 |
| 2014-01-28 | Rename ImmutableCopyableVector to ImmutableCloneableVector | Virgile Andreani | -2/+2 |
| 2014-01-28 | Rename OwnedCopyableVector to OwnedCloneableVector | Virgile Andreani | -2/+2 |
| 2014-01-28 | Rename CopyableVector to CloneableVector | Virgile Andreani | -5/+5 |
| 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 |