| Age | Commit message (Expand) | Author | Lines |
| 2020-03-22 | add `fn make_contiguous` to VecDeque | Bastian Kauschke | -53/+227 |
| 2020-03-20 | Simplify ensure_root_is_owned callers | Mark Rousskov | -15/+13 |
| 2020-03-20 | Drop NodeHeader type from BTree code | Mark Rousskov | -41/+5 |
| 2020-03-20 | Make functions dependent only on shared root avoidance safe | Mark Rousskov | -58/+58 |
| 2020-03-20 | Remove shared root code and assertions from BTree nodes | Mark Rousskov | -59/+8 |
| 2020-03-20 | Replace shared root with optional root | Mark Rousskov | -77/+112 |
| 2020-03-14 | Rollup merge of #69809 - matthiaskrgr:lifetimes, r=eddyb | Yuki Okushi | -1/+1 |
| 2020-03-12 | remove lifetimes that can be elided (clippy::needless_lifetimes) | Matthias Krüger | -1/+1 |
| 2020-03-12 | Rollup merge of #69792 - LenaWil:try_reserve_error/impl-error, r=sfackler | Mazdak Farrokhzad | -0/+18 |
| 2020-03-11 | Reformat match statement to make the check pass | Lena Wildervanck | -3/+1 |
| 2020-03-11 | Format the match statement | Lena Wildervanck | -3/+6 |
| 2020-03-08 | Rollup merge of #69668 - ssomers:btreemap_even_more_comments, r=Mark-Simulacrum | Mazdak Farrokhzad | -14/+19 |
| 2020-03-08 | Rollup merge of #69776 - ssomers:fix69769, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+10 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -5/+5 |
| 2020-03-07 | Implement Error for TryReserveError | Lena Wildervanck | -0/+17 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -1/+1 |
| 2020-03-06 | fix various typos | Matthias Krüger | -5/+5 |
| 2020-03-06 | Fix & test leak of some BTreeMap nodes on panic during `into_iter` | Stein Somers | -1/+10 |
| 2020-03-04 | Documentation and slight simplification of BTreeMap's internals | Stein Somers | -14/+19 |
| 2020-03-03 | Simplify conditions like x + 1 <= y to x < y | Matthias Krüger | -1/+1 |
| 2020-02-29 | simplify boolean expressions | Matthias Krüger | -2/+2 |
| 2020-02-28 | Auto merge of #68827 - ssomers:btree_navigation_revisited, r=Mark-Simulacrum | bors | -150/+148 |
| 2020-02-28 | Make implementation of navigation simpler, safer and faster | Stein Somers | -150/+148 |
| 2020-02-28 | Fix and test implementation of BTreeMap's first_entry, last_entry, pop_first,... | Stein Somers | -10/+14 |
| 2020-02-26 | Auto merge of #67290 - jonas-schievink:leak-audit, r=KodrAus | bors | -112/+195 |
| 2020-02-20 | Rollup merge of #68705 - BijanT:ll_remove, r=Mark-Simulacrum | Dylan DPC | -0/+46 |
| 2020-02-19 | Add LinkedList::remove() | Bijan Tabatabai | -0/+46 |
| 2020-02-16 | Fix comments outdated during #66648 | Stein Somers | -5/+4 |
| 2020-02-09 | Rollup merge of #68834 - ssomers:btree_first_last_fix68829, r=KodrAus | Dylan DPC | -10/+14 |
| 2020-02-07 | Lift range_search up one level of abstraction | Stein Somers | -42/+45 |
| 2020-02-04 | Fix and test implementation of BTreeMap's first_entry, last_entry, pop_first,... | Stein Somers | -10/+14 |
| 2020-01-31 | Bundle and document 6 BTreeMap navigation algorithms | Stein Somers | -236/+314 |
| 2020-01-30 | Rollup merge of #68468 - ssomers:btreemap_prefer_middle, r=Mark-Simulacrum | Dylan DPC | -119/+132 |
| 2020-01-30 | Rollup merge of #66648 - crgl:btree-clone-from, r=Amanieu | Dylan DPC | -9/+86 |
| 2020-01-29 | BTreeMap: tag and explain unsafe internal functions or assert preconditions | Stein Somers | -119/+132 |
| 2020-01-29 | Rollup merge of #68378 - billyrieger:btreemap-remove-entry, r=KodrAus | Yuki Okushi | -1/+30 |
| 2020-01-28 | Reformat truncation section of clone_from | Charles Gleason | -10/+10 |
| 2020-01-28 | Add private is_empty method to RangeMut | Charles Gleason | -3/+7 |
| 2020-01-28 | Format safety comment as per tidy | Charles Gleason | -1/+1 |
| 2020-01-28 | Add BTreeMap::remove_entry | Billy Rieger | -1/+30 |
| 2020-01-27 | Rename `Alloc` to `AllocRef` | Tim Diekmann | -1/+1 |
| 2020-01-21 | Rollup merge of #67686 - ssomers:keys_start_slasher, r=Mark-Simulacrum | Mazdak Farrokhzad | -65/+24 |
| 2020-01-21 | Declare unsafe functions that can no longer handle shared roots | Stein Somers | -6/+6 |
| 2020-01-21 | trade in outdated comments for correct ones | Stein Somers | -2/+2 |
| 2020-01-19 | Format | Jonas Schievink | -2/+5 |
| 2020-01-19 | Move VecDeque Drain iterator to new file | Jonas Schievink | -121/+131 |
| 2020-01-19 | Avoid leak in DrainFilter when a drop panics | Jonas Schievink | -1/+15 |
| 2020-01-19 | Fix leak in VecDeque::drain when drop panics | Jonas Schievink | -34/+48 |
| 2020-01-19 | Fix leak in btree_map::IntoIter when drop panics | Jonas Schievink | -1/+16 |
| 2020-01-19 | Fix `VecDeque::truncate` leak on drop panic | Jonas Schievink | -1/+16 |