| Age | Commit message (Expand) | Author | Lines |
| 2013-06-26 | Add methods .move_from() and .copy_from() to vec | Kevin Ballard | -0/+73 |
| 2013-06-26 | Add method .set_memory in vec::bytes for &[u8] | Kevin Ballard | -0/+26 |
| 2013-06-25 | remove `each` from vec, HashMap and HashSet | Daniel Micay | -115/+7 |
| 2013-06-25 | auto merge of #7254 : Blei/rust/intrinsic-overhaul, r=cmr | bors | -4/+11 |
| 2013-06-25 | Remove stage0 cfgs | James Miller | -2/+0 |
| 2013-06-24 | std: Rewrite vec_reserve_shared_actual in Rust | Brian Anderson | -7/+3 |
| 2013-06-24 | work around ICE from default method | Daniel Micay | -2/+2 |
| 2013-06-24 | iterator: implement `collect` with FromIterator | Daniel Micay | -0/+11 |
| 2013-06-24 | remove old_iter | Daniel Micay | -5/+4 |
| 2013-06-23 | Remove intrinsic module | Philipp Brüschweiler | -4/+11 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -13/+3 |
| 2013-06-22 | iterator: add a FromIterator trait | Daniel Micay | -1/+13 |
| 2013-06-22 | iterator: add a size_hint default method | Daniel Micay | -6/+21 |
| 2013-06-21 | replace vec::find with the IteratorUtil method | Daniel Micay | -41/+0 |
| 2013-06-21 | vec: replace `position` with `iter().position_` | Daniel Micay | -42/+4 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -175/+12 |
| 2013-06-21 | vec: remove eachi | Daniel Micay | -41/+0 |
| 2013-06-21 | vec: remove each_const | Daniel Micay | -15/+0 |
| 2013-06-21 | libstd: cleanup warnings | James Miller | -1/+1 |
| 2013-06-18 | replace #[inline(always)] with #[inline]. r=burningtree. | Graydon Hoare | -68/+68 |
| 2013-06-17 | auto merge of #7198 : huonw/rust/slice-zeros, r=Aatch | bors | -0/+22 |
| 2013-06-17 | std: add Zero impls for &[] and &str. | Huon Wilson | -0/+22 |
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -17/+17 |
| 2013-06-16 | auto merge of #7142 : alexcrichton/rust/deriving-zero, r=pcwalton | bors | -0/+11 |
| 2013-06-16 | auto merge of #7137 : erickt/rust/from-elem-fixme, r=thestinger | bors | -2/+4 |
| 2013-06-15 | rm CopyableOrderedIter | Daniel Micay | -17/+0 |
| 2013-06-15 | rm vec::uniq_len | Daniel Micay | -12/+16 |
| 2013-06-15 | auto merge of #7147 : huonw/rust/vec-connect, r=Aatch | bors | -16/+18 |
| 2013-06-15 | std: rename .connect/.concat in VectorVector to avoid conflicting with StrVec... | Huon Wilson | -16/+18 |
| 2013-06-14 | rm CopyableNonstrictIter | Daniel Micay | -45/+0 |
| 2013-06-14 | rm MutableIter | Daniel Micay | -23/+0 |
| 2013-06-14 | rm ExtendedMutableIter | Daniel Micay | -7/+0 |
| 2013-06-14 | Add Zero impls for lots of common types | Alex Crichton | -0/+11 |
| 2013-06-14 | std: add a fixme to note performance issues in vec::from_elem. | Erick Tryzelaar | -2/+4 |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -5/+11 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -11/+5 |
| 2013-06-08 | remove deprecated vec::{is_empty, len} functions | Daniel Micay | -38/+33 |
| 2013-06-08 | rm some uses of to_mut_unsafe_ptr | Daniel Micay | -2/+2 |
| 2013-06-09 | remove unused import warnings | Huon Wilson | -2/+2 |
| 2013-06-09 | std: remove foldr and alli methods in vec | Huon Wilson | -16/+0 |
| 2013-06-09 | std: remove fold[lr] in favour of iterators | Huon Wilson | -124/+1 |
| 2013-06-09 | std: remove {all*,any*,count} in favour of iterators | Huon Wilson | -172/+2 |
| 2013-06-09 | std: add reverse vec iterators, replace vec::each*_reverse. | Huon Wilson | -114/+96 |
| 2013-06-08 | std: remove each[i]_mut functions, in favour of iterators. | Huon Wilson | -48/+5 |
| 2013-06-08 | std: remove vec::each2 and vec::each2_mut in favour of iterators | Huon Wilson | -38/+0 |
| 2013-06-06 | Fixups | Marvin Löbel | -0/+10 |
| 2013-06-06 | Deduplicate words in code comments | Alexei Sholik | -1/+1 |
| 2013-06-06 | std: add an external iterator for mutating vec elements | Huon Wilson | -0/+44 |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -3/+3 |
| 2013-06-03 | auto merge of #6886 : jld/rust/vec-each-ret-fix, r=sanxiyn | bors | -2/+19 |