| Age | Commit message (Expand) | Author | Lines |
| 2022-06-24 | Rollup merge of #98039 - tnballo:master, r=thomcc | Yuki Okushi | -13/+117 |
| 2022-06-23 | Fix BTreeSet's range API panic message, document | tnballo | -13/+117 |
| 2022-06-23 | Rollup merge of #96173 - jmaargh:jmaargh/with-capacity-doc-fix, r=Dylan-DPC | Michael Goulet | -30/+37 |
| 2022-06-21 | remove use of &Alloc in btree tests | Ralf Jung | -6/+6 |
| 2022-06-19 | Fix documentation for with_capacity and reserve families of methods | jmaargh | -30/+37 |
| 2022-06-19 | Rollup merge of #98233 - RalfJung:ref-alloc, r=thomcc | Dylan DPC | -6/+6 |
| 2022-06-18 | make btree not use &A: Allocator instance | Ralf Jung | -6/+6 |
| 2022-06-18 | Auto merge of #98004 - paolobarbolini:vecdeque-extend-trustedlen, r=the8472 | bors | -0/+175 |
| 2022-06-18 | Auto merge of #98178 - RalfJung:btree-alloc, r=thomcc | bors | -241/+270 |
| 2022-06-17 | comments explaining why we have and don't have ManuallyDrop | Ralf Jung | -0/+6 |
| 2022-06-18 | Expose iter::ByRefSized as unstable feature and use it | Paolo Barbolini | -1/+1 |
| 2022-06-18 | Add VecDeque::extend from TrustedLen specialization | Paolo Barbolini | -0/+175 |
| 2022-06-17 | Rollup merge of #95392 - Xuanwo:stablize_try_reserve_2, r=dtolnay | Dylan DPC | -4/+2 |
| 2022-06-16 | btree: avoid forcing the allocator to be a reference | Ralf Jung | -241/+264 |
| 2022-06-16 | Rollup merge of #98125 - KarlWithK:entry_add_modify_doc, r=Dylan-DPC | Matthias Krüger | -1/+6 |
| 2022-06-16 | std: Stabilize feature try_reserve_2 | Xuanwo | -4/+2 |
| 2022-06-15 | change "1" to "c" to pass test | KarlWithK | -1/+1 |
| 2022-06-15 | Add examples using `add_modify` to btree | KarlWithK | -1/+6 |
| 2022-06-14 | btreemap-alloc: fix clear impl | Jacob Hughes | -15/+6 |
| 2022-06-14 | BTreeMap: Add alloc param | Jacob Hughes | -340/+676 |
| 2022-06-14 | Rollup merge of #97869 - ssomers:btree_comments, r=Dylan-DPC | Dylan DPC | -6/+7 |
| 2022-06-08 | BTreeSet: avoid intermediate sorting when collecting sorted iterators | Stein Somers | -13/+15 |
| 2022-06-08 | BTree: tweak internal comments | Stein Somers | -6/+7 |
| 2022-05-31 | Tweak insert docs | Ariel Davis | -3/+7 |
| 2022-05-31 | Rollup merge of #97316 - CAD97:bound-misbehavior, r=dtolnay | Matthias Krüger | -9/+10 |
| 2022-05-30 | BTreeSet->BTreeMap (fix copy/paste mistake in documentation) | David Tolnay | -1/+1 |
| 2022-05-30 | Rollup merge of #89685 - DeveloperC286:iter_fields_to_private, r=oli-obk | Michael Goulet | -16/+17 |
| 2022-05-29 | Use Box::new() instead of box syntax in alloc tests | est31 | -19/+19 |
| 2022-05-23 | Put a bound on collection misbehavior | Christopher Durham | -9/+10 |
| 2022-05-08 | Warn on unused doc(hidden) on trait impl items | León Orell Valerian Liehr | -2/+0 |
| 2022-05-06 | Add a dedicated length-prefixing method to `Hasher` | Scott McMurray | -3/+3 |
| 2022-05-02 | Rollup merge of #94126 - ssomers:alloc_prep_1, r=Mark-Simulacrum | Yuki Okushi | -8/+1179 |
| 2022-04-28 | Add VecDeque::extend from vec::IntoIter and slice::Iter specializations | Paolo Barbolini | -19/+79 |
| 2022-04-26 | Rollup merge of #90312 - r00ster91:search, r=Dylan-DPC | Dylan DPC | -8/+20 |
| 2022-04-25 | Rollup merge of #96107 - Gumichocopengin8:test/vec-deque, r=Mark-Simulacrum | Matthias Krüger | -0/+294 |
| 2022-04-24 | test: add test cases for VecDeque | Keita Nonaka | -0/+294 |
| 2022-04-16 | Rollup merge of #96070 - Gumichocopengin8:test/btree-map, r=thomcc | Dylan DPC | -0/+105 |
| 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-04-13 | test: add remove() test cases for BTreeSet | Keita Nonaka | -0/+20 |
| 2022-04-13 | test: add is_superset test cases for BTreeSet | Keita Nonaka | -0/+36 |
| 2022-04-06 | add necessary closure for partition_point | Jane Lusby | -2/+2 |
| 2022-04-06 | Update binary_search example to instead redirect to partition_point | Jane Lusby | -2/+16 |
| 2022-03-30 | Stabilize feature vec_retain_mut on Vec and VecDeque | Linus Färnstrand | -3/+1 |
| 2022-03-22 | rename internal helper trait AsIntoIter to AsVecIntoIter | The 8472 | -2/+2 |
| 2022-03-21 | add module-level documentation for vec's in-place iteration | The8472 | -0/+2 |
| 2022-03-21 | move AsIntoIter helper trait and mark it as unsafe | The8472 | -1/+1 |
| 2022-03-20 | Auto merge of #92962 - frank-king:btree_entry_no_insert, r=Amanieu | bors | -41/+86 |