| Age | Commit message (Expand) | Author | Lines |
| 2025-09-19 | Add unstable attribute to BTreeMap-related allocator generics | Sidney Cammeresi | -1/+6 |
| 2025-09-17 | Rollup merge of #144871 - Kivooeo:btree_entry_insert-stabilize, r=jhpratt | Stuart Cook | -4/+2 |
| 2025-08-26 | remove deprecated Error::description in impls | Marijn Schouten | -4/+0 |
| 2025-08-04 | remove gates | Kivooeo | -4/+2 |
| 2025-05-27 | Unit test for Range parameter of `BTreeMap::extract_if` | Sidney Cammeresi | -0/+24 |
| 2025-05-27 | Update tests with Range parameter to `BTreeMap::extract_if` etc. | Sidney Cammeresi | -25/+25 |
| 2024-11-27 | Add `BTreeSet` entry APIs to match `HashSet` | Josh Stone | -0/+5 |
| 2024-11-26 | Rollup merge of #133042 - cuviper:btreemap-insert_entry, r=Amanieu | Michael Goulet | -30/+75 |
| 2024-11-14 | btree: add `{Entry,VacantEntry}::insert_entry` | Josh Stone | -30/+75 |
| 2024-11-04 | btree: don't leak value if destructor of key panics | Lukas Markeffsky | -0/+48 |
| 2024-10-25 | library: consistently use American spelling for 'behavior' | Ralf Jung | -1/+1 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -2/+2 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -8/+9 |
| 2024-07-26 | Fix doc nits | John Arundel | -0/+1 |
| 2024-07-06 | Mark format! with must_use hint | lukas | -9/+9 |
| 2024-03-25 | lib: fix some unnecessary_cast clippy lint | klensy | -1/+1 |
| 2024-02-22 | Add `rustc_confusables` annotations to some stdlib APIs | Esteban Küber | -0/+3 |
| 2024-01-25 | Rollup merge of #118208 - Amanieu:btree_cursor2, r=dtolnay | Matthias Krüger | -48/+87 |
| 2023-12-10 | remove redundant imports | surechen | -6/+1 |
| 2023-11-23 | Add UnorderedKeyError | Amanieu d'Antras | -21/+13 |
| 2023-11-23 | Rewrite the BTreeMap cursor API using gaps | Amanieu d'Antras | -34/+81 |
| 2023-06-14 | s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedList | The 8472 | -28/+28 |
| 2023-06-14 | remove drain-on-drop behavior from BTree{Set,Map}::DrainFilter and add #[must... | The 8472 | -18/+21 |
| 2023-06-13 | ignore core, alloc and test tests that require unwinding on panic=abort | Pietro Albini | -0/+9 |
| 2023-05-04 | btree_map: `Cursor{,Mut}::peek_prev` must agree | Jubilee Young | -0/+19 |
| 2023-04-14 | Rollup merge of #110244 - kadiwa4:unnecessary_imports, r=JohnTitor | Matthias Krüger | -2/+1 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -2/+1 |
| 2023-04-12 | Fix btree `CursorMut::insert_after` check | marc0246 | -0/+64 |
| 2023-02-01 | BTreeMap: Add Cursor and CursorMut | Amanieu d'Antras | -0/+49 |
| 2023-02-01 | BTreeMap: Change internal insert function to return a handle | Amanieu d'Antras | -19/+21 |
| 2022-12-28 | Rollup merge of #94145 - ssomers:binary_heap_tests, r=jyn514 | fee1-dead | -3/+3 |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -1/+0 |
| 2022-08-22 | Move error trait into core | Jane Losare-Lusby | -0/+11 |
| 2022-06-23 | Fix BTreeSet's range API panic message, document | tnballo | -0/+33 |
| 2022-06-17 | comments explaining why we have and don't have ManuallyDrop | Ralf Jung | -0/+2 |
| 2022-06-16 | btree: avoid forcing the allocator to be a reference | Ralf Jung | -24/+22 |
| 2022-06-14 | BTreeMap: Add alloc param | Jacob Hughes | -24/+50 |
| 2022-06-08 | BTree: tweak internal comments | Stein Somers | -4/+5 |
| 2022-05-02 | Share testing utilities with non-btree test cases | Stein Somers | -3/+3 |
| 2022-04-15 | chore: formatting | Keita Nonaka | -11/+9 |
| 2022-04-15 | test: add try_insert() test cases for BTreeSet | Keita Nonaka | -0/+15 |
| 2022-04-15 | test: add get_key_value() test cases for BTreeSet | Keita Nonaka | -0/+24 |
| 2022-04-14 | test: add pop_first() pop_last() test cases for BTreeSet | Keita Nonaka | -9/+77 |
| 2022-03-20 | Auto merge of #92962 - frank-king:btree_entry_no_insert, r=Amanieu | bors | -20/+63 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -1/+1 |
| 2022-03-09 | BTreeMap::entry: Avoid allocating if no insertion | Frank King | -20/+63 |
| 2022-03-07 | BTree: remove dead data needlessly complicating insert | Stein Somers | -3/+3 |
| 2022-02-20 | BTree: simplify test code | Stein Somers | -108/+89 |
| 2022-01-09 | eplace usages of vec![].into_iter with [].into_iter | Lucas Kent | -2/+2 |
| 2021-12-10 | BTree: rename compile-time assertions to match library/alloc/tests | Stein Somers | -3/+3 |