| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2013-12-17 | std::vec::bytes: remove the reference to overlapping src and dest in | Huon Wilson | -7/+4 |
| 2013-12-17 | std::vec::raw: convert copy_memory to a method. | Huon Wilson | -20/+21 |
| 2013-12-17 | std::vec::raw: convert init_elem to a method. | Huon Wilson | -16/+16 |
| 2013-12-16 | vec: avoid some unsafe code in MoveIterator's dtor | Daniel Micay | -4/+2 |
| 2013-12-17 | std::vec: remove aliasing &mut [] and &[] from shift_opt. | Huon Wilson | -43/+27 |
| 2013-12-16 | vec: make the move iterator fast for all types | Daniel Micay | -42/+42 |
| 2013-12-15 | librustc: Remove identifiers named `box`, since it's about to become a keyword. | Patrick Walton | -2/+2 |
| 2013-12-15 | auto merge of #10984 : huonw/rust/clean-raw, r=cmr | bors | -145/+94 |
| 2013-12-15 | std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut []. | Huon Wilson | -33/+44 |
| 2013-12-15 | Move std::{str,vec}::raw::set_len to an unsafe method on Owned{Vector,Str}. | Huon Wilson | -33/+33 |
| 2013-12-15 | std::vec: move pointless `raw::get` and `unsafe_get` functions. | Huon Wilson | -16/+0 |
| 2013-12-15 | std::vec::raw: clean up docs. | Huon Wilson | -4/+6 |
| 2013-12-15 | std::vec::bytes: remove obsolete functions. | Huon Wilson | -44/+2 |
| 2013-12-15 | std::vec: remove unnecessary count parameter on {bytes, | Huon Wilson | -18/+12 |
| 2013-12-15 | std: fix spelling in docs. | Huon Wilson | -8/+9 |
| 2013-12-12 | Inline Finallyalizer::drop, allowing LLVM to optimize `finally`. | Eduard Burtescu | -0/+55 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -145/+145 |
| 2013-12-03 | add MutableVector::mut_split(self, pred) -> DoubleEndedIterator<&mut [T]> | Guillaume Pinot | -4/+110 |
| 2013-12-02 | rename MutableVector::mut_split(at) to MutableVector::mut_split_at(at) | Guillaume Pinot | -6/+6 |
| 2013-11-30 | Implement DoubleEndedIterator for MutChunkIter. | Palmer Cox | -0/+29 |