| Age | Commit message (Expand) | Author | Lines |
| 2020-02-09 | Don't return empty slice on last iteration with matched terminator. Test reve... | Pyry Kontio | -9/+94 |
| 2020-02-09 | Implement split_inclusive for slice and str, an splitting iterator that inclu... | Pyry Kontio | -0/+39 |
| 2020-02-09 | Rollup merge of #68834 - ssomers:btree_first_last_fix68829, r=KodrAus | Dylan DPC | -21/+35 |
| 2020-02-08 | Refine and extend benchmarks of mutable BTreeSet methods | Stein Somers | -16/+85 |
| 2020-02-07 | Make rc::RcBox and sync::ArcInner repr(C) | Lukas Lueg | -0/+8 |
| 2020-02-07 | Auto merge of #68499 - ssomers:btree_search_tidying, r=Mark-Simulacrum | bors | -42/+101 |
| 2020-02-07 | Lift range_search up one level of abstraction | Stein Somers | -42/+45 |
| 2020-02-07 | Create benchmarks for BTreeMap::range | Stein Somers | -0/+56 |
| 2020-02-06 | Rollup merge of #68524 - jonas-schievink:generator-resume-arguments, r=Zoxc | Dylan DPC | -0/+24 |
| 2020-02-04 | Fix and test implementation of BTreeMap's first_entry, last_entry, pop_first,... | Stein Somers | -21/+35 |
| 2020-02-03 | Rollup merge of #68711 - hman523:fix-68593, r=Dylan-DPC | Dylan DPC | -1/+4 |
| 2020-02-02 | Add a resume type parameter to `Generator` | Jonas Schievink | -0/+24 |
| 2020-02-01 | implement AsMut<str> for String | Trevor Spiteri | -0/+8 |
| 2020-02-02 | Derive Clone + PartialEq + Eq for std::string::FromUtf8Error | kennytm | -1/+5 |
| 2020-01-31 | Fixed issue 68593 | hman523 | -1/+4 |
| 2020-01-31 | Bundle and document 6 BTreeMap navigation algorithms | Stein Somers | -236/+314 |
| 2020-01-31 | Rollup merge of #68680 - ollie27:doc_alloc_playground, r=Centril | Dylan DPC | -0/+1 |
| 2020-01-30 | Add `#![doc(html_playground_url = ...)]` to alloc crate | Oliver Middleton | -0/+1 |
| 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/+106 |
| 2020-01-29 | BTreeMap: tag and explain unsafe internal functions or assert preconditions | Stein Somers | -119/+132 |
| 2020-01-29 | Rollup merge of #68592 - pdbrito:master, r=jonas-schievink | Yuki Okushi | -1/+1 |
| 2020-01-29 | Rollup merge of #68378 - billyrieger:btreemap-remove-entry, r=KodrAus | Yuki Okushi | -1/+30 |
| 2020-01-28 | Refine [Arc/Rc]::from_raw() docs | Lukas Lueg | -10/+26 |
| 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 | Include empty BTreeMap in clone_from tests | Charles Gleason | -2/+2 |
| 2020-01-28 | Format safety comment as per tidy | Charles Gleason | -1/+1 |
| 2020-01-28 | Auto merge of #68529 - TimDiekmann:rename-alloc, r=Amanieu | bors | -26/+26 |
| 2020-01-28 | fix: typo in vec.rs | Pedro de Brito | -1/+1 |
| 2020-01-28 | Add BTreeMap::remove_entry | Billy Rieger | -1/+30 |
| 2020-01-28 | Auto merge of #68234 - CAD97:slice-from-raw-parts, r=KodrAus | bors | -1/+0 |
| 2020-01-27 | Rename `Alloc` to `AllocRef` | Tim Diekmann | -26/+26 |
| 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-21 | Auto merge of #68154 - ssomers:btreemap_navigation_benches, r=Mark-Simulacrum | bors | -8/+69 |
| 2020-01-19 | Format | Jonas Schievink | -15/+14 |
| 2020-01-19 | Update comments in `Drain`s `Drop` impl | Jonas Schievink | -3/+5 |
| 2020-01-19 | Move VecDeque Drain iterator to new file | Jonas Schievink | -121/+131 |
| 2020-01-19 | Add test for panic in LL DrainFilter predicate | Jonas Schievink | -0/+35 |
| 2020-01-19 | Avoid leak in DrainFilter when a drop panics | Jonas Schievink | -2/+50 |
| 2020-01-19 | Fix leak in vec::IntoIter when a destructor panics | Jonas Schievink | -1/+32 |
| 2020-01-19 | Fix leak in VecDeque::drain when drop panics | Jonas Schievink | -34/+86 |
| 2020-01-19 | Fix leak in btree_map::IntoIter when drop panics | Jonas Schievink | -1/+44 |
| 2020-01-19 | Avoid leak in `vec::Drain` when item drop panics | Jonas Schievink | -13/+69 |
| 2020-01-19 | Fix `VecDeque::truncate` leak on drop panic | Jonas Schievink | -2/+50 |
| 2020-01-19 | Fix `binary_heap::DrainSorted` drop leak on panics | Jonas Schievink | -2/+47 |
| 2020-01-19 | Auto merge of #67758 - ssomers:testing_range, r=Mark-Simulacrum | bors | -31/+150 |
| 2020-01-17 | Allow added string.insert benchmarks to compile | Stein Somers | -1/+1 |