| Age | Commit message (Expand) | Author | Lines |
| 2024-06-11 | fix rustfmt issue in libstd | Rémy Rakic | -4/+1 |
| 2024-06-10 | replace version placeholder | Pietro Albini | -2/+2 |
| 2024-06-07 | Rollup merge of #124012 - slanterns:as_slice_stabilize, r=BurntSushi | Matthias Krüger | -2/+1 |
| 2024-06-04 | Make deleting on LinkedList aware of the allocator | Andrei Damian | -2/+41 |
| 2024-06-01 | stablize `const_binary_heap_constructor` & create an unstable feature `const_... | coekjan | -2/+5 |
| 2024-05-07 | Move `test_shrink_to_unwind` to its own file. | Markus Everling | -54/+1 |
| 2024-05-07 | Fix `VecDeque::shrink_to` UB when `handle_alloc_error` unwinds. | Markus Everling | -2/+119 |
| 2024-04-24 | fix typo in binary_heap docs | Thomas Lindae | -1/+1 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -12/+28 |
| 2024-04-17 | Address comments | Noa | -3/+1 |
| 2024-04-16 | Stabilize `BinaryHeap::as_slice` | Slanterns | -2/+1 |
| 2024-04-08 | Add invariant to VecDeque::pop_* that len < cap if pop successful | Philippe-Cholet | -2/+8 |
| 2024-04-02 | Auto merge of #122945 - andy-k:sorted-vec-example, r=jhpratt | bors | -2/+4 |
| 2024-03-28 | Rename reserve_for_push to grow_one and fix comment. | Cai Bear | -1/+1 |
| 2024-03-28 | Fix previous. | Cai Bear | -1/+2 |
| 2024-03-28 | Remove len argument from RawVec::reserve_for_push because it's always equal t... | Cai Bear | -3/+2 |
| 2024-03-25 | lib: fix some unnecessary_cast clippy lint | klensy | -1/+1 |
| 2024-03-24 | clarify equivalency of binary_search and partition_point | Andy Kurnia | -1/+3 |
| 2024-03-23 | improve example on inserting to a sorted vector to avoid shifting equal elements | Andy Kurnia | -1/+1 |
| 2024-03-23 | Auto merge of #119552 - krtab:dead_code_priv_mod_pub_field, r=cjgillot,saethlin | bors | -8/+4 |
| 2024-03-21 | document into_iter in top level docs iterator ordering guarantees | ultrabear | -2/+2 |
| 2024-03-21 | document iteration ordering on into_iter method instead of IntoIterator imple... | ultrabear | -3/+2 |
| 2024-03-21 | BTree(Set|Map): Guarantee that `IntoIter` will iterate in sorted by key order | ultrabear | -2/+4 |
| 2024-03-12 | Remove unused fields in some structures | Arthur Carcano | -8/+4 |
| 2024-03-09 | Rollup merge of #120504 - kornelski:try_with_capacity, r=Amanieu | Guillaume Boisseau | -0/+24 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -12/+30 |
| 2024-03-06 | Add #[inline] to BTreeMap::new constructor | Urgau | -0/+1 |
| 2024-03-01 | try_with_capacity for Vec, VecDeque, String | Kornel | -0/+24 |
| 2024-03-01 | remove hidden use of Global | Alexander | -1/+1 |
| 2024-02-23 | remove repetitive words | cui fliter | -6/+6 |
| 2024-02-22 | Add `rustc_confusables` annotations to some stdlib APIs | Esteban Küber | -0/+28 |
| 2024-02-18 | Auto merge of #118264 - lukas-code:optimized-draining, r=the8472 | bors | -56/+114 |
| 2024-02-17 | Rollup merge of #121149 - SebastianJL:patch-1, r=Mark-Simulacrum | Matthias Krüger | -4/+4 |
| 2024-02-16 | address review comments | Lukas Markeffsky | -44/+99 |
| 2024-02-16 | outline large copies | Lukas Markeffsky | -7/+20 |
| 2024-02-16 | reduce branchiness | Lukas Markeffsky | -31/+22 |
| 2024-02-16 | reduce amount of math | Lukas Markeffsky | -14/+12 |
| 2024-02-16 | simplify codegen for trivially droppable types | Lukas Markeffsky | -2/+3 |
| 2024-02-16 | Auto merge of #120486 - reitermarkus:use-generic-nonzero, r=dtolnay | bors | -16/+16 |
| 2024-02-15 | Fix typo in VecDeque::handle_capacity_increase() doc comment. | Johannes Lade | -4/+4 |
| 2024-02-15 | Rollup merge of #120505 - Amanieu:fix-btreemap-cursor-remove, r=m-ou-se | Guillaume Gomez | -0/+12 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -5/+5 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -16/+16 |
| 2024-02-11 | fix intra-doc links | ripytide | -12/+12 |
| 2024-02-11 | fix incorrect doctest | ripytide | -2/+2 |
| 2024-02-11 | improve `btree_cursors` functions documentation | ripytide | -87/+130 |
| 2024-01-30 | Fix BTreeMap's Cursor::remove_{next,prev} | Amanieu d'Antras | -0/+12 |
| 2024-01-25 | Rollup merge of #118208 - Amanieu:btree_cursor2, r=dtolnay | Matthias Krüger | -392/+549 |
| 2024-01-02 | Adjust library tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -2/+2 |
| 2023-12-21 | fix minor mistake in comments describing VecDeque resizing | Kent Ross | -4/+4 |