| Age | Commit message (Expand) | Author | Lines |
| 2021-10-04 | Auto merge of #89144 - sexxi-goose:insig_stdlib, r=nikomatsakis | bors | -0/+1 |
| 2021-08-17 | Constified `Default` implementations | Deadbeef | -1/+2 |
| 2021-08-12 | Add missing cfg attribute | Benoît du Garreau | -0/+3 |
| 2021-08-10 | Specialize `Vec::clone_from` for `Copy` types | Benoît du Garreau | -10/+27 |
| 2021-08-08 | Auto merge of #86879 - YohDeadfall:stabilize-vec-shrink-to, r=dtolnay | bors | -2/+1 |
| 2021-08-08 | Bump shrink_to stabilization to Rust 1.56 | David Tolnay | -1/+1 |
| 2021-08-05 | alloc: Use intra doc links for the reserve function | est31 | -2/+6 |
| 2021-08-02 | Rollup merge of #87644 - Flying-Toast:vec-remove-note, r=the8472 | Yuki Okushi | -0/+6 |
| 2021-07-31 | Auto merge of #87488 - kornelski:track-remove, r=dtolnay | bors | -0/+2 |
| 2021-07-30 | Recommend `swap_remove` in `Vec::remove` docs | Flying-Toast | -0/+6 |
| 2021-07-29 | Fix may not to appropriate might not or must not | Ali Malik | -1/+1 |
| 2021-07-26 | Track caller of Vec::remove() | Kornel | -0/+2 |
| 2021-07-24 | Auto merge of #84111 - bstrie:hashfrom, r=joshtriplett | bors | -4/+5 |
| 2021-07-06 | Stabilize Vec<T>::shrink_to | Yoh Deadfall | -2/+1 |
| 2021-06-30 | impl From<[(K, V); N]> for std::collections | bstrie | -4/+5 |
| 2021-06-30 | Remove "length" doc aliases | Amanieu d'Antras | -1/+0 |
| 2021-06-30 | Remove alloc/malloc/calloc/realloc doc aliases | Amanieu d'Antras | -7/+0 |
| 2021-06-24 | Use `hash_one` to simplify some other doctests | Scott McMurray | -8/+3 |
| 2021-06-22 | Add comments around code where ordering is important due for panic-safety | The8472 | -0/+2 |
| 2021-06-17 | Rollup merge of #86140 - scottmcm:array-hash-facepalm, r=kennytm | Yuki Okushi | -0/+17 |
| 2021-06-08 | Mention the Borrow guarantee on the Hash implementations for Array and Vec | Scott McMurray | -0/+17 |
| 2021-06-02 | Update expressions where we can use array's IntoIterator implementation | Muhammad Mominul Huque | -4/+4 |
| 2021-05-24 | Avoid a double drop in Vec::dedup if a destructor panics | Giacomo Stevanato | -2/+3 |
| 2021-05-05 | alloc: Add unstable Cfg feature `no-global_oom_handling` | John Ericson | -2/+54 |
| 2021-04-28 | Stabilize vec_extend_from_within | Amanieu d'Antras | -3/+1 |
| 2021-04-21 | Remove duplicated fn(Box<[T]>) -> Vec<T> | Caleb Sander | -2/+1 |
| 2021-04-18 | Slightly change wording and fix typo in vec/mod.rs | Waffle Lapkin | -2/+2 |
| 2021-04-12 | Improve code example for length comparison | Guillaume Gomez | -1/+1 |
| 2021-03-31 | panic early when TrustedLen indicates a length > usize::MAX | The8472 | -0/+8 |
| 2021-03-28 | Auto merge of #83582 - jyn514:might-not, r=joshtriplett | bors | -3/+3 |
| 2021-03-27 | may not -> might not | Joshua Nelson | -3/+3 |
| 2021-03-26 | Use iter::zip in library/ | Josh Stone | -6/+3 |
| 2021-03-25 | Change wording | Michael Howell | -2/+2 |
| 2021-03-24 | Add docs for Vec::from functions | Michael Howell | -0/+61 |
| 2021-03-18 | Rollup merge of #82191 - Soveu:dedup, r=nagisa | Dylan DPC | -6/+89 |
| 2021-03-16 | Rollup merge of #83072 - henryboisdequin:patch-1, r=Dylan-DPC | Yuki Okushi | -3/+3 |
| 2021-03-15 | Merge branch 'master' into dedup | Soveu | -37/+53 |
| 2021-03-15 | Vec::dedup optimization - finishing polishes | Soveu | -11/+7 |
| 2021-03-13 | Update `Vec` docs | Henry Boisdequin | -3/+3 |
| 2021-03-04 | Add regression test for `Vec::extend_from_within` leak | Waffle | -3/+5 |
| 2021-03-04 | Fix leak in Vec::extend_from_within | Waffle | -16/+27 |
| 2021-03-04 | Rollup merge of #82564 - WaffleLapkin:revert_spare_mut, r=RalfJung | Yuki Okushi | -10/+14 |
| 2021-03-03 | Update library/alloc/src/vec/mod.rs | Waffle Lapkin | -1/+1 |
| 2021-03-03 | Make Vec::split_at_spare_mut impl safer & simplier | Waffle | -9/+5 |
| 2021-02-27 | Revert `Vec::spare_capacity_mut` impl to prevent pointers invalidation | Waffle | -1/+9 |
| 2021-02-25 | Convert primitives to use intra-doc links | Joshua Nelson | -4/+2 |
| 2021-02-24 | library: Normalize safety-for-unsafe-block comments | Miguel Ojeda | -8/+9 |
| 2021-02-23 | Rollup merge of #81154 - dylni:improve-design-of-assert-len, r=KodrAus | Dylan DPC | -3/+3 |
| 2021-02-17 | Vec::dedup optimization - panic gracefully | Soveu | -16/+65 |
| 2021-02-16 | Vec::dedup optimization | Soveu | -6/+44 |