| Age | Commit message (Expand) | Author | Lines |
| 2020-10-03 | Rollup merge of #75377 - canova:map_debug_impl, r=dtolnay | Jonas Schievink | -7/+51 |
| 2020-10-01 | BTreeMap: use Unique::from to avoid a cast where type information exists | Stein Somers | -1/+1 |
| 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 |
| 2020-09-09 | make as_leaf return a raw pointer, to reduce aliasing assumptions | Ralf Jung | -7/+12 |
| 2020-09-05 | rename MaybeUninit slice methods | Ralf Jung | -11/+15 |
| 2020-08-19 | BTreeMap: introduce marker::ValMut and reserve marker::Mut for unique access | Stein Somers | -171/+319 |
| 2020-08-18 | BTreeMap: check some invariants, avoid recursion in depth first search | Stein Somers | -41/+302 |
| 2020-08-15 | Auto merge of #75488 - ssomers:btree_revert_75257, r=Mark-Simulacrum | bors | -49/+20 |
| 2020-08-14 | Rollup merge of #75531 - ssomers:btree_tests_migration, r=Mark-Simulacrum | Tyler Mandry | -0/+2173 |
| 2020-08-14 | Rollup merge of #75519 - ssomers:btree_splitpoint_cleanup, r=Mark-Simulacrum | Tyler Mandry | -31/+36 |
| 2020-08-14 | Rollup merge of #75195 - ssomers:btree_split_up_into_kv_mut, r=Mark-Simulacrum | Tyler Mandry | -9/+19 |
| 2020-08-14 | Move btree unit test to their native, privileged location | Stein Somers | -0/+2173 |
| 2020-08-14 | BTreeMap: refactor splitpoint and move testing over to unit test | Stein Somers | -31/+36 |
| 2020-08-14 | BTreeMap: refactor splitpoint and move testing over to unit test | Stein Somers | -31/+36 |
| 2020-08-14 | Auto merge of #74777 - ssomers:btree_cleanup_7, r=Mark-Simulacrum | bors | -20/+16 |
| 2020-08-13 | Reverts the fundamental changes in #74762 and #75257 | Stein Somers | -49/+20 |
| 2020-08-13 | Stop BTreeMap casts from reborrowing | Stein Somers | -20/+16 |
| 2020-08-12 | Somewhat complicated way to respect BTreeMap's node length invariant | Stein Somers | -16/+65 |
| 2020-08-11 | BTreeMap: purge innocent use of into_kv_mut | Stein Somers | -9/+19 |
| 2020-08-10 | Manually implement Debug for BTreeMap::ValuesMut struct | Nazım Can Altınova | -1/+24 |
| 2020-08-10 | Manually implement Debug for BTreeMap::{IntoKeys,IntoValues} structs | Nazım Can Altınova | -6/+27 |
| 2020-08-09 | BTreeMap: better distinguish the root holder from the root node | Stein Somers | -42/+51 |
| 2020-08-08 | Auto merge of #75163 - canova:map_into_keys_values, r=dtolnay | bors | -0/+148 |
| 2020-08-08 | Update the tracking issue number of map_into_keys_values | Nazım Can Altınova | -12/+12 |
| 2020-08-08 | Remove min/max values from IntoValues Iterator implementation | Nazım Can Altınova | -8/+0 |
| 2020-08-08 | Auto merge of #75257 - ssomers:btree_74762_again, r=Mark-Simulacrum | bors | -32/+25 |
| 2020-08-07 | Auto merge of #75071 - ssomers:btree_cleanup_5, r=Mark-Simulacrum | bors | -53/+51 |
| 2020-08-07 | BTreeMap: enforce the panic rule imposed by `replace` | Stein Somers | -53/+51 |
| 2020-08-07 | BTreeMap: better way to postpone root access in DrainFilter | Stein Somers | -32/+25 |
| 2020-08-07 | Change the comment of BTreeMap::into_values | Nazım Can Altınova | -1/+1 |