| Age | Commit message (Expand) | Author | Lines |
| 2014-10-07 | Rename slicing methods | Nick Cameron | -1/+45 |
| 2014-10-07 | Rename slice::Slice | Nick Cameron | -3/+3 |
| 2014-10-07 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -25/+31 |
| 2014-10-02 | rollup merge of #16993 : dschatzberg/items-bounds | Alex Crichton | -15/+77 |
| 2014-10-02 | Revert "Use slice syntax instead of slice_to, etc." | Aaron Turon | -40/+28 |
| 2014-10-02 | Revert "Remove the `_` suffix from slice methods." | Aaron Turon | -53/+0 |
| 2014-10-02 | Revert "Review and rebasing changes" | Aaron Turon | -5/+10 |
| 2014-10-02 | Add fixes for new lifetime bounds | Dan Schatzberg | -9/+6 |
| 2014-10-02 | Add tests for MoveItems | Dan Schatzberg | -0/+33 |
| 2014-10-02 | Use RawPtr::offset when size_of::<T>() > 0 | Dan Schatzberg | -1/+5 |
| 2014-10-02 | Add lifetime bounds on Items and MutItems. | Dan Schatzberg | -14/+42 |
| 2014-10-02 | auto merge of #17620 : nick29581/rust/slice4, r=aturon | bors | -25/+85 |
| 2014-10-02 | Review and rebasing changes | Nick Cameron | -10/+5 |
| 2014-10-02 | auto merge of #17381 : tbu-/rust/pr_mapinplace2, r=aturon | bors | -208/+222 |
| 2014-10-02 | Remove the `_` suffix from slice methods. | Nick Cameron | -0/+53 |
| 2014-10-02 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -28/+40 |
| 2014-09-28 | Register new snapshots | Steven Fackler | -3/+0 |
| 2014-09-22 | Fix deprecation warnings in check-docs. | Victor Berger | -0/+2 |
| 2014-09-21 | Fix fallout from Vec stabilization | Alex Crichton | -39/+10 |
| 2014-09-21 | collections: Stabilize Vec | Alex Crichton | -5/+56 |
| 2014-09-19 | Refactor `Vec::map_in_place` to move code out of `PartialVec` | Tobias Bucher | -208/+222 |
| 2014-09-19 | Implement slicing syntax. | Nick Cameron | -0/+80 |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -36/+36 |
| 2014-09-16 | Align with _mut conventions | Aaron Turon | -7/+49 |
| 2014-09-16 | auto merge of #17266 : Gankro/rust/vec-move, r=alexcrichton | bors | -0/+2 |
| 2014-09-16 | auto merge of #17280 : thestinger/rust/heap, r=pcwalton | bors | -7/+3 |
| 2014-09-15 | heap: optimize EMPTY to avoid relocations | Daniel Micay | -7/+3 |
| 2014-09-15 | auto merge of #16887 : steveklabnik/rust/guide_iterators, r=alexcrichton | bors | -1/+3 |
| 2014-09-14 | impl ExactSize for vec::MoveItems | Alexis Beingessner | -0/+2 |
| 2014-09-14 | Fixed `map_in_place` tests after rustc upgrade | Tobias Bucher | -8/+7 |
| 2014-09-14 | Added missing `}` from `map_in_place` rebase | Tobias Bucher | -0/+1 |
| 2014-09-14 | Remove the unused `Iterator` implementation of the private `PartialVec` | Tobias Bucher | -6/+0 |
| 2014-09-14 | Minimize the public interface and rename it to `map_in_place` | Tobias Bucher | -19/+21 |
| 2014-09-14 | Check that the `min_align_of` the both types in a `PartialVec` matches | Tobias Bucher | -2/+6 |
| 2014-09-14 | Fix some of the issues mentioned in the PR on Github | Tobias Bucher | -22/+43 |
| 2014-09-14 | PartialVec: Remove TODOs and rename `unwrap` to `into_vec` | Tobias Bucher | -8/+4 |
| 2014-09-14 | Add support for in-place map for `Vec`s of types with same size | Tobias Bucher | -0/+258 |
| 2014-09-13 | Move info into individual modules. | Steve Klabnik | -1/+3 |
| 2014-08-31 | Add unwrap method to MoveItems | Julian Orth | -0/+25 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -4/+12 |
| 2014-08-19 | A few minor documentation fixes | P1start | -28/+26 |
| 2014-08-18 | libsyntax: Remove the `use foo = bar` syntax from the language in favor | Patrick Walton | -1/+1 |
| 2014-08-16 | librustc: Forbid external crates, imports, and/or items from being | Patrick Walton | -3/+1 |
| 2014-08-13 | collections: Deprecate Vec::tailn. Same as slice_from | Brian Anderson | -1/+2 |
| 2014-08-13 | core: Rename ImmutableSlice::unsafe_ref to unsafe_get | Brian Anderson | -3/+3 |
| 2014-08-13 | std: Rename slice::Vector to Slice | Brian Anderson | -6/+7 |
| 2014-08-13 | std: Rename various slice traits for consistency | Brian Anderson | -1/+1 |
| 2014-08-12 | Deprecation fallout in libcollections | Aaron Turon | -0/+1 |
| 2014-08-07 | fix grammar in Vec.retain's doc comment | Nathan Froyd | -1/+1 |
| 2014-08-02 | fix underflow in vec swap_remove | Alexis Beingessner | -1/+7 |