| Age | Commit message (Expand) | Author | Lines |
| 2024-08-14 | add Box::as_ptr and Box::as_mut_ptr methods | Ralf Jung | -2/+1 |
| 2024-08-03 | Rollup merge of #127586 - zachs18:more-must-use, r=cuviper | Matthias Krüger | -0/+2 |
| 2024-07-30 | Auto merge of #128234 - jcsp:retain-empty-case, r=tgross35 | bors | -0/+6 |
| 2024-07-29 | Optimize empty case in Vec::retain | John Spray | -0/+6 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -3/+2 |
| 2024-07-28 | Rollup merge of #127765 - bitfield:fix_stdlib_doc_nits, r=dtolnay | Guillaume Gomez | -12/+14 |
| 2024-07-27 | Rollup merge of #125897 - RalfJung:from-ref, r=Amanieu | Trevor Gross | -2/+2 |
| 2024-07-26 | Fix doc nits | John Arundel | -12/+14 |
| 2024-07-13 | Rollup merge of #127446 - zachs18:miri-stdlib-leaks-core-alloc, r=Mark-Simula... | Jubilee | -0/+6 |
| 2024-07-10 | Clarify/add `must_use` messages for more `into_raw*` functions of `alloc` types. | Zachary S | -0/+2 |
| 2024-07-07 | Specialize `TrustedLen` for `Iterator::unzip()` | Chayim Refael Friedman | -0/+20 |
| 2024-07-06 | Mitigate focused memory leaks in `alloc` doctests for Miri. | Zachary S | -0/+6 |
| 2024-07-01 | Avoid MIR bloat in inlining | Scott McMurray | -0/+1 |
| 2024-06-11 | replace version placeholder | Pietro Albini | -1/+1 |
| 2024-06-06 | less garbage, more examples | Ralf Jung | -2/+2 |
| 2024-05-26 | Stabilize `slice_flatten` | Cyborus | -3/+1 |
| 2024-04-20 | Avoid reloading Vec::len across grow_one in push | Mark Rousskov | -3/+5 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -2/+24 |
| 2024-04-12 | Avoid more NonNull-raw-NonNull roundtrips in Vec | Ben Kimock | -0/+27 |
| 2024-03-28 | Rename reserve_for_push to grow_one and fix comment. | Cai Bear | -2/+2 |
| 2024-03-28 | Remove len argument from RawVec::reserve_for_push because it's always equal t... | Cai Bear | -2/+2 |
| 2024-03-27 | Rollup merge of #123107 - avandesa:vec_pop_if, r=joboet | Matthias Krüger | -0/+25 |
| 2024-03-26 | Implement `Vec::pop_if` | Alex van de Sandt | -0/+25 |
| 2024-03-25 | Require DerefPure for patterns | Michael Goulet | -0/+3 |
| 2024-03-19 | fix OOB pointer formed in Vec::index | Joshua Wong | -4/+3 |
| 2024-03-17 | Improve wording of `Vec::swap_remove` | Pierre Allix | -1/+1 |
| 2024-03-09 | Rollup merge of #120504 - kornelski:try_with_capacity, r=Amanieu | Guillaume Boisseau | -0/+34 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -2/+24 |
| 2024-03-05 | Rollup merge of #121262 - 20jasper:add-vector-time-complexity, r=cuviper | Matthias Krüger | -0/+21 |
| 2024-03-01 | try_with_capacity for Vec, VecDeque, String | Kornel | -0/+34 |
| 2024-02-26 | Document args returned from `Vec::into_raw_parts{,_with_alloc}` | 许杰友 Jieyou Xu (Joe) | -2/+2 |
| 2024-02-26 | Rearrange `Vec::from_raw_parts{,_in}` doc argument order to match code argume... | 许杰友 Jieyou Xu (Joe) | -2/+2 |
| 2024-02-25 | Make push docs more vague | Jacob Asper | -4/+3 |
| 2024-02-22 | Add `rustc_confusables` annotations to some stdlib APIs | Esteban Küber | -0/+3 |
| 2024-02-18 | Fix error in push docs | Jacob Asper | -4/+5 |
| 2024-02-18 | fix typo in push documentation | Jacob Asper | -1/+1 |
| 2024-02-18 | intradoc link for vec | Jacob Asper | -1/+1 |
| 2024-02-18 | time complexity for insert | Jacob Asper | -0/+6 |
| 2024-02-18 | time complexity for pop | Jacob Asper | -0/+4 |
| 2024-02-18 | time complexity for push_within_capacity | Jacob Asper | -0/+4 |
| 2024-02-18 | time complexity for push | Jacob Asper | -0/+7 |
| 2024-02-08 | Reduce use of NonNull::new_unchecked in library/ | Ben Kimock | -3/+3 |
| 2024-01-30 | Apply suggestions from code review | the8472 | -12/+11 |
| 2024-01-30 | document `FromIterator for Vec` allocation behaviors | The 8472 | -0/+45 |
| 2024-01-26 | Rollup merge of #119917 - Zalathar:split-off, r=cuviper | Matthias Krüger | -8/+0 |
| 2024-01-23 | Auto merge of #119892 - joboet:libs_use_assert_unchecked, r=Nilstrieb,cuviper | bors | -1/+1 |
| 2024-01-21 | Rollup merge of #120180 - Zalathar:vec-split-off-alternatives, r=dtolnay | Matthias Krüger | -0/+6 |
| 2024-01-21 | Document some alternatives to `Vec::split_off` | Zalathar | -0/+6 |
| 2024-01-19 | fix: Drop guard was deallocating with the incorrect size | The 8472 | -1/+1 |
| 2024-01-18 | Clarify docs for Vec::into_boxed_slice, Vec::shrink_to_fit | invpt | -7/+12 |