| Age | Commit message (Expand) | Author | Lines |
| 2018-04-29 | use const trick | Mark Mansi | -1/+1 |
| 2018-04-26 | not insta-stable | Mark Mansi | -0/+1 |
| 2018-04-26 | make Vec::new const :P | Mark Mansi | -1/+1 |
| 2018-04-25 | Make Vec::new const | Mark Mansi | -1/+1 |
| 2018-04-21 | Add some f32 and f64 inherent methods in libcore | Simon Sapin | -0/+1 |
| 2018-04-17 | Rollup merge of #49555 - nox:inline-into-boxed, r=alexcrichton | kennytm | -1/+3 |
| 2018-04-16 | Auto merge of #48945 - clarcharr:iter_exhaust, r=Kimundi | bors | -6/+3 |
| 2018-04-15 | Remove #[inline(always)] on Vec::into_boxed_slice | Anthony Ramine | -1/+0 |
| 2018-04-14 | Cleanup liballoc use statements | Mike Hommey | -1/+1 |
| 2018-04-12 | Auto merge of #49551 - scottmcm:deprecate-offset_to, r=KodrAus | bors | -3/+4 |
| 2018-04-08 | Remove inline on Vec::shrink_to_fit as asked by Alex | Anthony Ramine | -1/+0 |
| 2018-04-05 | Rollup merge of #49496 - glandium:master, r=sfackler | kennytm | -26/+55 |
| 2018-04-04 | Replace manual iter exhaust with for_each(drop). | Clar Charr | -6/+3 |
| 2018-04-04 | Rollup merge of #49559 - djc:resize-with, r=TimNN | kennytm | -7/+57 |
| 2018-04-03 | Introduce Vec::resize_with method (see #41758) | Dirkjan Ochtman | -7/+57 |
| 2018-04-03 | Remove all unstable placement features | Aidan Hobson Sayers | -75/+1 |
| 2018-04-02 | Add vec!['\0'; n] optimization, like vec![0; n] | Mike Hommey | -0/+2 |
| 2018-04-02 | Add vec![ptr::null{,_mut}(); n] optimization, like vec![0; n] | Mike Hommey | -26/+53 |
| 2018-04-01 | Inline most of the code paths for conversions with boxed slices | Anthony Ramine | -1/+5 |
| 2018-03-31 | Deprecate offset_to; switch core&alloc to using offset_from instead | Scott McMurray | -3/+4 |
| 2018-03-30 | Rollup merge of #49466 - glandium:master, r=rkruppe | kennytm | -2/+2 |
| 2018-03-29 | Move RangeArguments to {core::std}::ops and rename to RangeBounds | Simon Sapin | -4/+3 |
| 2018-03-29 | Move alloc::Bound to {core,std}::ops | Simon Sapin | -1/+1 |
| 2018-03-29 | Use f{32,64}::to_bits for is_zero test in vec::SpecFromElem | Mike Hommey | -2/+2 |
| 2018-03-28 | Rollup merge of #49452 - frewsxcv:frewsxcv-vec-cap-len, r=dtolnay | kennytm | -3/+4 |
| 2018-03-28 | Clarify "length" wording in `Vec::with_capacity`. | Corey Farwell | -3/+4 |
| 2018-03-27 | Implement `shrink_to` method on collections | Diggory Blake | -1/+26 |
| 2018-03-14 | implementing fallible allocation API (try_reserve) for Vec, String and HashMap | snf | -0/+78 |
| 2018-03-09 | Add missing urls | Guillaume Gomez | -7/+14 |
| 2018-03-06 | Rollup merge of #47463 - bluss:fused-iterator, r=alexcrichton | kennytm | -2/+2 |
| 2018-03-03 | core: Update stability attributes for FusedIterator | Ulrik Sverdrup | -2/+2 |
| 2018-03-03 | core: Stabilize FusedIterator | Ulrik Sverdrup | -2/+2 |
| 2018-03-02 | Don't have Vec<T> delegate to [T]'s bounds for indexing | Jonathan Behrens | -7/+11 |
| 2018-03-02 | Update comments | Jonathan Behrens | -2/+2 |
| 2018-03-02 | Have Vec use slice's implementations of Index<I> and IndexMut<I> | Jonathan Behrens | -125/+5 |
| 2018-02-22 | [docs] Minor wording changes to drain_filter docs | Matt Brubeck | -2/+2 |
| 2018-02-16 | Clarify contiguity of Vec's elements. | Sergio Benitez | -5/+5 |
| 2018-02-13 | Switch to retain calling drain_filter. | Jacob Kiesel | -21/+1 |
| 2018-02-08 | Swap `ptr::read` for `ptr::drop_in_place` | Jacob Kiesel | -1/+1 |
| 2018-02-07 | Apply optimization from #44355 to retain | Jacob Kiesel | -4/+9 |
| 2018-01-24 | Auto merge of #47299 - cramertj:unsafe-placer, r=alexcrichton | bors | -1/+1 |
| 2018-01-20 | Rename std::ptr::Shared to NonNull | Simon Sapin | -5/+5 |
| 2018-01-09 | Make core::ops::Place an unsafe trait | Taylor Cramer | -1/+1 |
| 2018-01-01 | Fix panic condition docs for Vec::insert. | Corey Farwell | -1/+1 |
| 2017-12-20 | Clarify vec docs on deallocation (fixes #46879) | Manish Goregaokar | -2/+4 |
| 2017-12-16 | Move PhantomData<T> from Shared<T> to users of both Shared and #[may_dangle] | Simon Sapin | -0/+3 |
| 2017-12-09 | Use Try syntax for Option in place of macros or match | Matt Brubeck | -4/+1 |
| 2017-11-21 | fix some typos | Martin Lindhe | -1/+1 |
| 2017-11-03 | Remove unused AsciiExt imports and fix tests related to ascii methods | Lukas Kalbertodt | -2/+0 |
| 2017-10-09 | usize index message for vec | Guillaume Gomez | -1/+24 |