| Age | Commit message (Expand) | Author | Lines |
| 2018-04-28 | std: Inline `DefaultResizePolicy::new` | Alex Crichton | -0/+1 |
| 2018-04-22 | Replace GlobalAlloc::oom with a lang item | Steven Fackler | -2/+2 |
| 2018-04-20 | Auto merge of #50088 - alexcrichton:std-tweaks, r=sfackler | bors | -2/+2 |
| 2018-04-19 | Tweak some stabilizations in libstd | Alex Crichton | -2/+2 |
| 2018-04-17 | stabilize `hash_map_remove_entry` feature | tinaun | -2/+1 |
| 2018-04-12 | Remove the now-unit-struct AllocErr field inside CollectionAllocErr | Simon Sapin | -2/+2 |
| 2018-04-12 | Remove the now-unit-struct AllocErr parameter of oom() | Simon Sapin | -1/+1 |
| 2018-04-12 | Actually deprecate the Heap type | Simon Sapin | -2/+2 |
| 2018-04-12 | Import the `alloc` crate as `alloc_crate` in std | Simon Sapin | -3/+1 |
| 2018-04-03 | Remove all unstable placement features | Aidan Hobson Sayers | -150/+1 |
| 2018-04-02 | Use Alloc and Layout from core::heap. | Mike Hommey | -1/+2 |
| 2018-03-28 | Rollup merge of #49400 - Diggsey:shrink-to, r=joshtriplett | kennytm | -0/+40 |
| 2018-03-27 | Implement `shrink_to` method on collections | Diggory Blake | -0/+40 |
| 2018-03-25 | Implement get_key_value for HashMap, BTreeMap | Diggory Blake | -0/+28 |
| 2018-03-15 | setting ABORTING_MALLOC for asmjs backend | snf | -4/+0 |
| 2018-03-14 | try_reserve: disabling tests for asmjs, blocked by #48968 | snf | -0/+4 |
| 2018-03-14 | implementing fallible allocation API (try_reserve) for Vec, String and HashMap | snf | -13/+83 |
| 2018-03-06 | Rollup merge of #47463 - bluss:fused-iterator, r=alexcrichton | kennytm | -7/+7 |
| 2018-03-05 | Remove a couple of `isize` references from hashmap docs | Tobias Bucher | -27/+27 |
| 2018-03-03 | core: Update stability attributes for FusedIterator | Ulrik Sverdrup | -7/+7 |
| 2018-03-03 | core: Stabilize FusedIterator | Ulrik Sverdrup | -7/+7 |
| 2018-02-25 | Rollup merge of #48166 - hedgehog1024:hedgehog1024-stabilize-entry_and_modify... | kennytm | -2/+1 |
| 2018-02-25 | 1.25.0 -> 1.26.- | Manish Goregaokar | -1/+1 |
| 2018-02-13 | 38880 remove unnecessary self.table.size check | Shaun Steenkamp | -4/+0 |
| 2018-02-13 | 38880 fix incorrect negation | Shaun Steenkamp | -1/+1 |
| 2018-02-13 | 38880 hashmap check size=0, not just capacity=0 | Shaun Steenkamp | -30/+24 |
| 2018-02-13 | 38880 restore original entry(key) method | Shaun Steenkamp | -1/+3 |
| 2018-02-12 | Stabilize 'entry_and_modify' feature for HashMap | hedgehog1024 | -2/+1 |
| 2018-02-12 | 38880 fixup add missing mut | Shaun Steenkamp | -1/+1 |
| 2018-02-12 | 38880 remove redundant extra function | Shaun Steenkamp | -14/+6 |
| 2018-02-06 | 38880 use search_mut function rather than search_hashed | Shaun Steenkamp | -3/+1 |
| 2018-02-06 | 38880 don't compute hash when searching an empty HashMap | Shaun Steenkamp | -5/+35 |
| 2018-01-28 | Document that `Index` ops can panic on `HashMap` & `BTreeMap`. | Corey Farwell | -2/+7 |
| 2018-01-24 | Auto merge of #47299 - cramertj:unsafe-placer, r=alexcrichton | bors | -1/+1 |
| 2018-01-09 | Make core::ops::Place an unsafe trait | Taylor Cramer | -1/+1 |
| 2018-01-07 | Add HashMap::remove_entry | Steven Fackler | -1/+49 |
| 2017-11-11 | Improvided map_entry_replace examples | Jeroen Bollen | -12/+22 |
| 2017-11-11 | Changed tabs back into spaces to fix formatting. | Jeroen Bollen | -2/+2 |
| 2017-11-11 | Addressed issues raised in #44286. | Jeroen Bollen | -5/+27 |
| 2017-11-08 | std: Remove `rand` crate and module | Alex Crichton | -4/+2 |
| 2017-10-20 | [test] Add some `#[inline]` to `HashMap` | Alex Crichton | -0/+3 |
| 2017-10-06 | Auto merge of #44734 - mchlrhw:wip/hashmap-entry-and-then, r=BurntSushi | bors | -0/+35 |
| 2017-10-06 | Implement `entry_and_modify` | mchlrhw | -0/+35 |
| 2017-10-05 | Auto merge of #44943 - nivkner:fixme_fixup, r=dtolnay | bors | -3/+3 |
| 2017-09-30 | address some `FIXME`s whose associated issues were marked as closed | Niv Kaminer | -3/+3 |
| 2017-09-29 | Rollup merge of #44794 - napen123:master, r=frewsxcv | Mark Simulacrum | -0/+11 |
| 2017-09-28 | Auto merge of #44278 - Binero:master, r=BurntSushi | bors | -0/+30 |
| 2017-09-24 | Add doc example to HashMap::hasher | Ethan Dagner | -0/+11 |
| 2017-09-15 | HashMap::new and HashSet::new do not allocate | Jon Gjengset | -0/+3 |
| 2017-09-12 | Addressed @BurntSuchi's remarks regarding Entry::replace | Jeroen Bollen | -4/+3 |