| Age | Commit message (Expand) | Author | Lines |
| 2016-12-15 | Stabilize std::vec::IntoIter::{as_slice, as_mut_slice} | Aaron Turon | -4/+2 |
| 2016-12-12 | Auto merge of #38049 - frewsxcv:libunicode, r=alexcrichton | bors | -8/+8 |
| 2016-12-09 | Auto merge of #38192 - stjepang:faster-sort-algorithm, r=bluss | bors | -182/+301 |
| 2016-12-08 | Inline nested fn collapse | Stjepan Glavina | -0/+1 |
| 2016-12-08 | Auto merge of #38182 - bluss:more-vec-extend, r=alexcrichton | bors | -6/+33 |
| 2016-12-07 | Implement a faster sort algorithm | Stjepan Glavina | -182/+300 |
| 2016-12-07 | Auto merge of #38149 - bluss:is-empty, r=alexcrichton | bors | -7/+31 |
| 2016-12-06 | vec: More specialization for Extend<&T> for vec | Ulrik Sverdrup | -6/+33 |
| 2016-12-04 | binary_heap: Forward ExactSizeIterator::is_empty | Ulrik Sverdrup | -3/+15 |
| 2016-12-04 | collections: Simplify VecDeque::is_empty | Ulrik Sverdrup | -4/+16 |
| 2016-12-03 | Remove redundant assertion near is_char_boundary. | Clar Charr | -4/+0 |
| 2016-11-30 | Add String::split_off. | Clar Charr | -0/+33 |
| 2016-11-30 | Rename 'librustc_unicode' crate to 'libstd_unicode'. | Corey Farwell | -8/+8 |
| 2016-11-26 | Auto merge of #36340 - sfackler:slice-get-slice, r=alexcrichton | bors | -4/+15 |
| 2016-11-26 | Auto merge of #38008 - bluss:rustbuild-benches, r=alexcrichton | bors | -0/+4 |
| 2016-11-26 | Overload get{,_mut}{,_unchecked} | Steven Fackler | -4/+15 |
| 2016-11-26 | Rollup merge of #37967 - sfackler:enumset-issue, r=sfackler | Seo Sanghyeon | -1/+1 |
| 2016-11-25 | rustbuild: Point to core and collections's external benchmarks. | Ulrik Sverdrup | -0/+4 |
| 2016-11-23 | Add a tracking issue for enum_set | Steven Fackler | -1/+1 |
| 2016-11-23 | core, collections: Implement better .is_empty() for slice and vec iterators | Ulrik Sverdrup | -2/+11 |
| 2016-11-13 | vec: Use less code bloat specialized Vec::from_iter | Ulrik Sverdrup | -20/+31 |
| 2016-11-13 | Restore Vec::from_iter() specialization | Ulrik Sverdrup | -1/+1 |
| 2016-11-11 | vec: Write the .extend() specialization in cleaner style | Ulrik Sverdrup | -30/+41 |
| 2016-11-05 | Rollup merge of #37587 - ollie27:to_mut, r=alexcrichton | Alex Crichton | -1/+4 |
| 2016-11-05 | Rollup merge of #37585 - leodasvacas:change_into_to_from, r=alexcrichton | Alex Crichton | -4/+4 |
| 2016-11-05 | Rollup merge of #37574 - ollie27:cow_add, r=alexcrichton | Alex Crichton | -24/+37 |
| 2016-11-04 | Remove recursive call from Cow::to_mut | Oliver Middleton | -1/+4 |
| 2016-11-04 | Change Into<Vec<u8>> for String and Into<OsString> for PathBuf to From impls | leonardo.yvens | -4/+4 |
| 2016-11-04 | Auto merge of #37306 - bluss:trusted-len, r=alexcrichton | bors | -57/+44 |
| 2016-11-04 | Fix issues with the Add/AddAssign impls for Cow<str> | Oliver Middleton | -24/+37 |
| 2016-11-04 | Link the tracking issue for TrustedLen | Ulrik Sverdrup | -1/+1 |
| 2016-10-31 | Changed most vec! invocations to use square braces | iirelu | -4/+4 |
| 2016-10-27 | vec: Remove the Vec specialization for .extend() | Ulrik Sverdrup | -13/+0 |
| 2016-10-27 | impl TrustedLen for vec::IntoIter | Ulrik Sverdrup | -0/+3 |
| 2016-10-26 | Auto merge of #37419 - GuillaumeGomez:rollup, r=GuillaumeGomez | bors | -22/+22 |
| 2016-10-26 | Auto merge of #37315 - bluss:fold-more, r=alexcrichton | bors | -20/+54 |
| 2016-10-26 | Vec docs: fix broken links and make quoting consistent | Duncan | -22/+22 |
| 2016-10-25 | Special case .fold() for VecDeque's iterators | Ulrik Sverdrup | -20/+54 |
| 2016-10-22 | Auto merge of #37327 - aidanhs:aphs-bytes-iter-doc, r=alexcrichton | bors | -2/+2 |
| 2016-10-22 | Auto merge of #37326 - SimonSapin:from-cow, r=alexcrichton | bors | -0/+14 |
| 2016-10-22 | Rollup merge of #37043 - GuillaumeGomez:vec_urls, r=frewsxcv | Guillaume Gomez | -52/+85 |
| 2016-10-21 | `as_bytes` is not the iterator, `bytes` is | Aidan Hobson Sayers | -2/+2 |
| 2016-10-21 | vec: Add a debug assertion where TrustedLen is used | Ulrik Sverdrup | -1/+7 |
| 2016-10-21 | Implement `From<Cow<str>> for String` and `From<Cow<[T]>> for Vec<T>`. | Simon Sapin | -0/+14 |
| 2016-10-21 | vec: Use Vec::extend specializations in extend_from_slice and more | Ulrik Sverdrup | -38/+2 |
| 2016-10-20 | Use TrustedLen for Vec's FromIterator and Extend | Ulrik Sverdrup | -10/+37 |
| 2016-10-20 | Add missing urls on Vec docs | Guillaume Gomez | -52/+85 |
| 2016-10-19 | Rollup merge of #37187 - frewsxcv:cow-doc-example, r=kmcallister | Guillaume Gomez | -2/+15 |
| 2016-10-16 | Update comment in Vec::dedup_by | Florian Diebold | -1/+1 |
| 2016-10-15 | Auto merge of #37094 - fhartwig:spec-extend-from-slice, r=alexcrichton | bors | -1/+18 |