| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2020-10-18 | Stabilize or_insert_with_key | Chai T. Rex | -2/+1 |
| 2020-10-18 | Auto merge of #76885 - dylni:move-slice-check-range-to-range-bounds, r=KodrAus | bors | -1/+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-17 | Rollup merge of #77751 - vojtechkral:vecdeque-binary-search, r=scottmcm,dtolnay | Dylan DPC | -1/+138 |
| 2020-10-16 | liballoc: VecDeque: Simplify binary_search_by() | Vojtech Kral | -15/+4 |
| 2020-10-16 | liballoc: VecDeque: Add tracking issue for binary search fns | Vojtech Kral | -3/+3 |
| 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-09 | liballoc: VecDeque: Add binary search functions | Vojtech Kral | -1/+149 |
| 2020-10-08 | Rollup merge of #77449 - ssomers:btree_drain_filter_size_hint, r=Mark-Simulacrum | Jonas Schievink | -0/+4 |
| 2020-10-08 | Rename LayoutErr to LayoutError outside of core | Jacob Hughes | -3/+3 |
| 2020-10-07 | Support custom allocators in `Box` | Tim Diekmann | -1/+1 |
| 2020-10-06 | avoid unnecessary intermediate reference and improve safety comments | Ralf Jung | -6/+11 |
| 2020-10-05 | BTreeMap: derive type-specific variants of node_as_mut and cast_unchecked | Stein Somers | -24/+28 |
| 2020-10-05 | make IterMut Send/Sync again | Ralf Jung | -0/+7 |
| 2020-10-05 | VecDeque: avoid more aliasing issues by working with raw pointers instead of ... | Ralf Jung | -12/+31 |
| 2020-10-05 | VecDeque: fix incorrect &mut aliasing in IterMut::next/next_back | Ralf Jung | -7/+24 |
| 2020-10-05 | Rollup merge of #77514 - scottmcm:less-once-chain-once, r=estebank | Dylan DPC | -2/+3 |
| 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-03 | Replace some once(x).chain(once(y)) with [x, y] IntoIter | Scott McMurray | -2/+3 |
| 2020-10-04 | BTreeMap/Set: complete the compile-time test cases | Stein Somers | -27/+118 |