| Age | Commit message (Expand) | Author | Lines |
| 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-19 | BTreeMap: test invariants more thoroughly and more readably | Stein Somers | -79/+115 |
| 2020-10-18 | Stabilize or_insert_with_key | Chai T. Rex | -2/+1 |
| 2020-10-18 | BTreeMap: split off most code of remove and split_off | Stein Somers | -222/+239 |
| 2020-10-18 | Rollup merge of #77851 - exrook:split-btreemap, r=dtolnay | Yuki Okushi | -468/+480 |
| 2020-10-17 | Rollup merge of #77932 - ssomers:btree_cleanup_gdb, r=Mark-Simulacrum | Dylan DPC | -1/+0 |
| 2020-10-16 | Merge branch 'master' into box-alloc | Tim Diekmann | -31/+94 |
| 2020-10-14 | BTreeMap: making PartialCmp/PartialEq explicit and tested | Stein Somers | -7/+62 |
| 2020-10-14 | BTreeMap: improve gdb introspection of BTreeMap with ZST keys or values | Stein Somers | -1/+0 |
| 2020-10-14 | Rollup merge of #77569 - ssomers:btree_cleanup_1, r=Mark-Simulacrum | Yuki Okushi | -24/+28 |
| 2020-10-12 | BTreeMap: refactor Entry out of map.rs into its own file | Jacob Hughes | -468/+480 |
| 2020-10-08 | Rollup merge of #77449 - ssomers:btree_drain_filter_size_hint, r=Mark-Simulacrum | Jonas Schievink | -0/+4 |
| 2020-10-07 | Support custom allocators in `Box` | Tim Diekmann | -1/+1 |
| 2020-10-05 | BTreeMap: derive type-specific variants of node_as_mut and cast_unchecked | Stein Somers | -24/+28 |
| 2020-10-05 | Rollup merge of #77471 - ssomers:btree_cleanup_3, r=Mark-Simulacrum | Dylan DPC | -7/+7 |
| 2020-10-05 | Rollup merge of #77395 - ssomers:btree_love_the_leaf_edge_comments, r=Mark-Si... | Dylan DPC | -22/+12 |
| 2020-10-04 | Rollup merge of #77445 - ssomers:btree_cleanup_7, r=Mark-Simulacrum | Jonas Schievink | -27/+118 |
| 2020-10-04 | Rollup merge of #77447 - ssomers:btree_cleanup_8, r=Mark-Simulacrum | Yuki Okushi | -2/+6 |
| 2020-10-04 | BTreeMap/Set: complete the compile-time test cases | Stein Somers | -27/+118 |
| 2020-10-03 | BTreeMap: comment why drain_filter's size_hint is somewhat pessimistictid | Stein Somers | -0/+4 |
| 2020-10-03 | BTreeMap: refactoring around edges, missed spots | Stein Somers | -7/+7 |
| 2020-10-03 | Rollup merge of #75377 - canova:map_debug_impl, r=dtolnay | Jonas Schievink | -7/+51 |
| 2020-10-02 | BTreeMap: document DrainFilterInner better | Stein Somers | -2/+6 |
| 2020-10-01 | BTreeMap: use Unique::from to avoid a cast where type information exists | Stein Somers | -1/+1 |
| 2020-10-01 | BTreeMap: admit the existence of leaf edges in comments | Stein Somers | -22/+12 |
| 2020-09-30 | Rollup merge of #77233 - ssomers:btree_size_matters, r=Mark-Simulacrum | Jonas Schievink | -0/+9 |
| 2020-09-27 | Use relative links instead of intra-doc links | Joshua Nelson | -1/+1 |
| 2020-09-26 | BTreeMap: keep an eye out on the size of the main components | Stein Somers | -0/+9 |
| 2020-09-25 | BTreeMap: various tweaks | Stein Somers | -61/+50 |
| 2020-09-25 | BTreeMap: introduce edge methods similar to those of keys and values | Stein Somers | -24/+34 |
| 2020-09-25 | BTreeMap: refactor correct_childrens_parent_links | Stein Somers | -26/+16 |
| 2020-09-20 | BTreeMap: extra testing unveiling mistakes in future PR | Stein Somers | -6/+25 |
| 2020-09-20 | Rollup merge of #76926 - ssomers:btree_cleanup_1, r=Mark-Simulacrum | Ralf Jung | -7/+7 |
| 2020-09-20 | Rollup merge of #76876 - denisvasilik:intra-doc-links-alloc, r=jyn514 | Ralf Jung | -11/+7 |
| 2020-09-20 | Rollup merge of #76722 - ssomers:btree_send_sync, r=Mark-Simulacrum | Ralf Jung | -0/+143 |
| 2020-09-19 | Use intra-doc links | Denis Vasilik | -11/+7 |
| 2020-09-19 | BTreeMap: wrap node's raw parent pointer in NonNull | Stein Somers | -20/+22 |
| 2020-09-19 | BTreeMap: code readability tweaks | Stein Somers | -7/+7 |
| 2020-09-16 | BTreeMap: avoid slices even more | Stein Somers | -16/+29 |
| 2020-09-15 | Test and fix Sync & Send traits of BTreeMap artefacts | Stein Somers | -0/+143 |
| 2020-09-13 | Rollup merge of #76527 - fusion-engineering-forks:cleanup-uninit, r=jonas-sch... | Jonas Schievink | -3/+3 |
| 2020-09-10 | Auto merge of #74437 - ssomers:btree_no_root_in_noderef, r=Mark-Simulacrum | bors | -117/+163 |
| 2020-09-10 | Document btree's unwrap_unchecked | Stein Somers | -0/+3 |
| 2020-09-10 | BTreeMap: pull the map's root out of NodeRef | Stein Somers | -117/+163 |
| 2020-09-09 | Remove internal and unstable MaybeUninit::UNINIT. | Mara Bos | -3/+3 |
| 2020-09-09 | BTreeMap: avoid aliasing by avoiding slices | Stein Somers | -167/+203 |