| Age | Commit message (Expand) | Author | Lines |
| 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 | 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 | Fix leak in btree_map::IntoIter when drop panics | Jonas Schievink | -1/+16 |
| 2020-01-10 | Simplify NodeHeader by avoiding slices in BTreeMaps with shared roots | Stein Somers | -60/+19 |
| 2020-01-09 | Apply suggestions from code review | Stein Somers | -1/+2 |
| 2020-01-09 | Simplify into_key_slice_mut and document bits and bobs | Stein Somers | -13/+20 |
| 2020-01-04 | Tweak and extend internal documentation, including debug asserts. | Stein Somers | -15/+39 |
| 2019-12-28 | Auto merge of #67459 - ssomers:#67438, r=RalfJung | bors | -24/+30 |
| 2019-12-26 | prune ill-conceived BTreeMap iter_mut assertion and test more | Stein Somers | -24/+30 |
| 2019-12-26 | Remove redundant link texts | Matthew Kraai | -2/+2 |
| 2019-12-23 | Implement clone_from for BTree collections | Charles Gleason | -1/+66 |
| 2019-12-23 | Make RangeMut::next_unchecked() output a mutable key reference | Charles Gleason | -7/+15 |
| 2019-12-22 | Format the world | Mark Rousskov | -743/+491 |
| 2019-11-29 | Format liballoc with rustfmt | David Tolnay | -21/+23 |
| 2019-11-26 | Fix spelling typos | Brian Wignall | -1/+1 |
| 2019-10-23 | proposal for access to BTreeMap/BTreeSet first/last, #62924 | Stein Somers | -11/+214 |
| 2019-10-18 | BTreeSet symmetric_difference & union optimized, cleaned | Stein Somers | -120/+119 |
| 2019-10-01 | Rollup merge of #64912 - lzutao:unneeded-main-doc, r=jonas-schievink | Mazdak Farrokhzad | -2/+0 |
| 2019-10-01 | BTreeSet intersection, difference & is_subnet optimizations | Stein Somers | -75/+155 |
| 2019-10-01 | Remove unneeded `fn main` blocks from docs | Lzu Tao | -2/+0 |
| 2019-09-27 | Stabilize map_get_key_value feature | Lzu Tao | -2/+1 |
| 2019-09-16 | Improve BTreeSet::Intersection::size_hint | pcpthm | -22/+22 |
| 2019-08-14 | Handle cfg(bootstrap) throughout | Mark Rousskov | -3/+3 |
| 2019-07-28 | Rollup merge of #62806 - mati865:clippy, r=TimNN | Mazdak Farrokhzad | -3/+3 |
| 2019-07-22 | Rollup merge of #62858 - Rosto75:master, r=jonas-schievink | Mazdak Farrokhzad | -4/+4 |
| 2019-07-21 | Change wrong variable name. | Tomasz Różański | -4/+4 |
| 2019-07-19 | use const array repeat expressions for uninit_array | Ralf Jung | -3/+3 |
| 2019-07-18 | Fix clippy::len_zero warnings | Mateusz Mikuła | -3/+3 |
| 2019-07-05 | Rollup merge of #62123 - jeremystucki:needless_lifetimes_std, r=alexcrichton | Mazdak Farrokhzad | -5/+5 |
| 2019-07-04 | Rollup merge of #62316 - khuey:efficient_last, r=sfackler | Mazdak Farrokhzad | -0/+35 |
| 2019-07-02 | When possible without changing semantics, implement Iterator::last in terms o... | Kyle Huey | -0/+35 |
| 2019-07-01 | Convert more usages over | Chris Gregory | -2/+2 |
| 2019-07-01 | Remove needless lifetimes | Jeremy Stucki | -5/+5 |
| 2019-05-22 | Revert "Add implementations of last in terms of next_back on a bunch of Doubl... | Steven Fackler | -55/+0 |
| 2019-04-19 | Add implementations of last in terms of next_back on a bunch of DoubleEndedIt... | Kyle Huey | -0/+55 |
| 2019-04-05 | Use for_each to extend collections | Josh Stone | -4/+4 |
| 2019-03-29 | improve worst-case performance of BTreeSet difference and intersection | Stein Somers | -65/+233 |
| 2019-03-26 | adjust MaybeUninit API to discussions | Ralf Jung | -5/+5 |
| 2019-02-22 | Rollup merge of #58431 - RalfJung:btree, r=Mark-Simulacrum | Mazdak Farrokhzad | -15/+42 |
| 2019-02-20 | Rollup merge of #58553 - scottmcm:more-ihle, r=Centril | kennytm | -20/+20 |
| 2019-02-17 | Use more impl header lifetime elision | Scott McMurray | -20/+20 |
| 2019-02-14 | split MaybeUninit into several features, expand docs a bit | Ralf Jung | -2/+2 |
| 2019-02-13 | fix invalidating references in BTree iterators | Ralf Jung | -13/+21 |
| 2019-02-13 | fix overlapping mutable and shared references in BTreeMap's into_slices_mut | Ralf Jung | -3/+22 |