| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2013-11-30 | Implement mut_chunks() method for MutableVector trait. | Palmer Cox | -0/+73 |
| 2013-11-29 | Removed a few macro-expanding-to-module workarounds | Marvin Löbel | -26/+5 |
| 2013-11-28 | auto merge of #10519 : nikomatsakis/rust/issue-8624-borrowck-overly-permissiv... | bors | -0/+194 |
| 2013-11-26 | librustc: Fix merge fallout. | Patrick Walton | -2/+2 |
| 2013-11-26 | libstd: Fix Win32 and other bustage. | Patrick Walton | -16/+16 |
| 2013-11-26 | test: Remove non-procedure uses of `do` from compiletest, libstd tests, | Patrick Walton | -2/+6 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -50/+46 |
| 2013-11-26 | librustc: Remove remaining uses of `&fn()` in favor of `||`. | Patrick Walton | -10/+10 |
| 2013-11-26 | Removed unneccessary `_iter` suffixes from various APIs | Marvin Löbel | -60/+65 |
| 2013-11-26 | std: Remove unused attributes | klutzy | -2/+2 |
| 2013-11-25 | Add [mut_]shift_ref/[mut_]pop_ref functions, which return a pointer to the fi... | Niko Matsakis | -0/+194 |
| 2013-11-22 | Add more benchmark tests to vec.rs | g3xzh | -2/+70 |
| 2013-11-21 | `std::ptr::read_ptr` now takes `*T` instead of `*mut T` | Ziad Hatahet | -1/+1 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -27/+29 |
| 2013-11-11 | vec: with_capacity: check for overflow | Corey Richardson | -1/+5 |
| 2013-11-08 | add `clone_from` and `deep_clone_from` | Daniel Micay | -1/+23 |
| 2013-11-06 | Register new snapshots | Alex Crichton | -14/+1 |
| 2013-11-05 | Rename misleading contains_managed to owns_managed | Niko Matsakis | -8/+21 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -16/+16 |
| 2013-10-17 | std: Move size/align functions to std::mem. #2240 | Brian Anderson | -22/+22 |
| 2013-10-17 | auto merge of #9908 : alexcrichton/rust/snapshots, r=thestinger | bors | -80/+0 |
| 2013-10-17 | Register new snapshots | Alex Crichton | -80/+0 |
| 2013-10-16 | Implement new methods vec.starts_with()/vec.ends_with() | Kevin Ballard | -0/+46 |
| 2013-10-16 | Rewrite vec.contains() to be simpler | Kevin Ballard | -2/+2 |
| 2013-10-16 | auto merge of #9833 : alexcrichton/rust/fixes, r=brson | bors | -0/+1 |
| 2013-10-15 | Require module documentation with missing_doc | Alex Crichton | -0/+1 |
| 2013-10-15 | use element count in slices, not size in bytes | Daniel Micay | -0/+81 |
| 2013-10-14 | std::vec: move documentation from impls to traits. | Huon Wilson | -302/+303 |
| 2013-10-12 | auto merge of #9608 : hmarr/rust/vec-get-opt, r=huonw | bors | -0/+18 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -18/+18 |
| 2013-09-29 | Add get_opt to std::vec | Harry Marr | -0/+18 |
| 2013-09-28 | auto merge of #9583 : blake2-ppc/rust/connect-vec, r=huonw | bors | -46/+38 |
| 2013-09-28 | std::vec: Remove functions concat, connect | blake2-ppc | -20/+5 |
| 2013-09-28 | std::vec: Sane implementations for connect_vec and concat_vec | blake2-ppc | -26/+15 |
| 2013-09-28 | std::vec: Add benchmark for .concat_vec and .connect_vec | blake2-ppc | -0/+18 |
| 2013-09-27 | auto merge of #9557 : blake2-ppc/rust/vec-lifetime-token, r=thestinger | bors | -6/+6 |
| 2013-09-27 | std::vec: Use a valid value as lifetime dummy in iterator | blake2-ppc | -6/+6 |
| 2013-09-26 | Update the compiler to not use printf/printfln | Alex Crichton | -2/+2 |
| 2013-09-25 | rustdoc: Change all code-blocks with a script | Alex Crichton | -18/+18 |
| 2013-09-21 | Document a few undocumented methos in Vector | Luis de Bethencourt | -0/+6 |
| 2013-09-17 | Document a few undocumented modules in libstd | Alex Crichton | -0/+2 |
| 2013-09-17 | std::at_vec: Fix segfault on overflow when resizing ~[@T] | blake2-ppc | -0/+8 |
| 2013-09-16 | std::vec: Add function vec::bytes::push_bytes | blake2-ppc | -0/+17 |
| 2013-09-16 | std::vec: Fix hazards with uint overflows in unsafe code | blake2-ppc | -6/+29 |
| 2013-09-12 | std: Remove Zero impl from vec | Erick Tryzelaar | -21/+4 |
| 2013-09-12 | std: Add Default implementation for vecs | Erick Tryzelaar | -0/+14 |
| 2013-09-12 | std: rename Option::unwrap_or_default() to unwrap_or() | Erick Tryzelaar | -1/+1 |