| Age | Commit message (Expand) | Author | Lines |
| 2020-11-24 | Rollup merge of #79354 - ssomers:btree_bereave_BoxedNode, r=Mark-Simulacrum | Jonas Schievink | -38/+12 |
| 2020-11-23 | BTreeMap/BTreeSet: make public doc more consistent | Stein Somers | -4/+6 |
| 2020-11-23 | BTreeMap: cut out the ceremony around BoxedNode | Stein Somers | -38/+12 |
| 2020-11-23 | doc typo | oliver | -2/+2 |
| 2020-11-22 | Rollup merge of #79297 - ssomers:btree_post_redux, r=Mark-Simulacrum | Mara Bos | -14/+14 |
| 2020-11-22 | Rollup merge of #79295 - ssomers:btree_fix_78903, r=Mark-Simulacrum | Mara Bos | -16/+15 |
| 2020-11-22 | Rollup merge of #79267 - ssomers:btree_namespaces, r=Mark-Simulacrum | Mara Bos | -35/+33 |
| 2020-11-22 | BTreeMap: swap the names of NodeRef::new and Root::new_leaf | Stein Somers | -14/+14 |
| 2020-11-22 | BTreeMap: fix minor testing mistakes in #78903 | Stein Somers | -16/+15 |
| 2020-11-21 | More consistently use spaces after commas in lists in docs | Carol (Nichols || Goulding) | -6/+6 |
| 2020-11-21 | BTreeMap: address namespace conflicts | Stein Somers | -35/+33 |
| 2020-11-18 | BTreeMap: reuse NodeRef as Root, keep BoxedNode for edges only, ban Unique | Stein Somers | -141/+132 |
| 2020-11-16 | Rollup merge of #78903 - ssomers:btree_order_chaos_testing, r=Mark-Simulacrum | Mara Bos | -26/+201 |
| 2020-11-16 | Rollup merge of #77691 - exrook:rename-layouterr, r=KodrAus | Mara Bos | -3/+3 |
| 2020-11-16 | Auto merge of #78631 - ssomers:btree-alias_for_underfull, r=Mark-Simulacrum | bors | -203/+320 |
| 2020-11-15 | Rollup merge of #79026 - mbrubeck:btree_retain, r=m-ou-se | Jonas Schievink | -0/+70 |
| 2020-11-15 | stabilize deque_range | Spyros Roum | -6/+2 |
| 2020-11-13 | Add BTreeMap::retain and BTreeSet::retain | Matt Brubeck | -0/+70 |
| 2020-11-13 | refactor: vec_deque ignore-tidy-filelength | C | -472/+514 |
| 2020-11-12 | Rollup merge of #78857 - SkiFire13:bheap-opt, r=KodrAus | Mara Bos | -13/+19 |
| 2020-11-12 | BTreeMap: test chaotic ordering & other bits & bobs | Stein Somers | -26/+201 |
| 2020-11-12 | BTreeMap: avoid aliasing while handling underfull nodes | Stein Somers | -203/+320 |
| 2020-11-11 | Rollup merge of #78417 - ssomers:btree_chop_up_2, r=Mark-Simulacrum | Jonas Schievink | -114/+176 |
| 2020-11-09 | Added SAFETY comment as request | Giacomo Stevanato | -0/+4 |
| 2020-11-09 | BTreeMap: fix pointer provenance rules, make borrowing explicit | Stein Somers | -247/+327 |
| 2020-11-09 | Rollup merge of #78476 - RalfJung:btree-alias, r=Mark-Simulacrum | Dylan DPC | -4/+8 |
| 2020-11-09 | Rollup merge of #78437 - ssomers:btree_no_ord_at_node_level, r=Mark-Simulacrum | Dylan DPC | -41/+22 |
| 2020-11-08 | BTreeMap: split off most code of append, slightly improve interfaces | Stein Somers | -114/+176 |
| 2020-11-07 | Remove useless bound checks from into_sorted_vec | Giacomo Stevanato | -1/+4 |
| 2020-11-07 | Remove useless branches from sift_down_range loop | Giacomo Stevanato | -6/+6 |
| 2020-11-07 | Remove branches from sift_down_to_bottom loop | Giacomo Stevanato | -6/+5 |
| 2020-11-07 | Rollup merge of #78538 - ssomers:btree_testing_rng, r=Mark-Simulacrum | Yuki Okushi | -0/+3 |
| 2020-11-01 | Rollup merge of #78602 - RalfJung:raw-ptr-aliasing-issues, r=m-ou-se | Mara Bos | -2/+3 |
| 2020-10-31 | fix aliasing issue in binary_heap | Ralf Jung | -2/+3 |
| 2020-10-30 | Constantify more BTreeMap and BTreeSet functions | BenoƮt du Garreau | -4/+22 |
| 2020-10-29 | BTreeMap: document a curious assumption in test cases | Stein Somers | -0/+3 |
| 2020-10-28 | fix some incorrect aliasing in the BTree | Ralf Jung | -4/+8 |
| 2020-10-27 | BTreeMap: stop mistaking node for an orderly place | Stein Somers | -41/+22 |
| 2020-10-27 | Auto merge of #78359 - ssomers:btree_cleanup_mem, r=Mark-Simulacrum | bors | -40/+42 |
| 2020-10-26 | Auto merge of #77187 - TimDiekmann:box-alloc, r=Amanieu | bors | -1/+1 |
| 2020-10-26 | BTreeMap: move generic functions out of navigate.rs | Stein Somers | -40/+42 |
| 2020-10-25 | Auto merge of #78015 - ssomers:btree_merge_mergers, r=Mark-Simulacrum | bors | -97/+111 |
| 2020-10-25 | Merge remote-tracking branch 'upstream/master' into box-alloc | Tim Diekmann | -824/+1012 |
| 2020-10-24 | BTreeMap: stop mistaking node::MIN_LEN as a node level constraint | Stein Somers | -55/+55 |
| 2020-10-22 | BTreeMap/Set: merge the implementations of MergeIter | Stein Somers | -97/+111 |
| 2020-10-21 | Rollup merge of #78056 - ssomers:btree_chop_up_1, r=dtolnay | Yuki Okushi | -222/+239 |
| 2020-10-20 | BTreeMap: less sharing, more similarity between leaf and internal nodes | Stein Somers | -45/+36 |
| 2020-10-20 | BTreeMap: reuse BoxedNode instances directly instead of their contents | Stein Somers | -7/+3 |
| 2020-10-20 | Rollup merge of #77612 - ssomers:btree_cleanup_2, r=Mark-Simulacrum | Yuki Okushi | -79/+115 |
| 2020-10-19 | BTreeMap: test invariants more thoroughly and more readably | Stein Somers | -79/+115 |