| Age | Commit message (Expand) | Author | Lines |
| 2018-05-01 | Rollup merge of #50316 - ehuss:fix-doc-links, r=frewsxcv | kennytm | -1/+1 |
| 2018-04-29 | Fix some broken links in docs. | Eric Huss | -1/+1 |
| 2018-04-28 | std: Inline `DefaultResizePolicy::new` | Alex Crichton | -0/+1 |
| 2018-04-22 | Replace GlobalAlloc::oom with a lang item | Steven Fackler | -5/+5 |
| 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-16 | Auto merge of #48945 - clarcharr:iter_exhaust, r=Kimundi | bors | -1/+1 |
| 2018-04-12 | Rename alloc::Void to alloc::Opaque | Simon Sapin | -1/+1 |
| 2018-04-12 | Use NonNull<Void> instead of *mut u8 in the Alloc trait | Mike Hommey | -4/+2 |
| 2018-04-12 | Return Result instead of Option in alloc::Layout constructors | Simon Sapin | -1/+1 |
| 2018-04-12 | Remove the now-unit-struct AllocErr field inside CollectionAllocErr | Simon Sapin | -4/+4 |
| 2018-04-12 | Remove the now-unit-struct AllocErr parameter of oom() | Simon Sapin | -3/+3 |
| 2018-04-12 | Actually deprecate the Heap type | Simon Sapin | -8/+8 |
| 2018-04-12 | Import the `alloc` crate as `alloc_crate` in std | Simon Sapin | -12/+7 |
| 2018-04-04 | Replace manual iter exhaust with for_each(drop). | Clar Charr | -1/+1 |
| 2018-04-03 | Remove all unstable placement features | Aidan Hobson Sayers | -176/+1 |
| 2018-04-02 | Use Alloc and Layout from core::heap. | Mike Hommey | -2/+4 |
| 2018-03-29 | Hide the Bound type in docs at its deprecated location in std::collections | Simon Sapin | -0/+1 |
| 2018-03-29 | Hide the deprecated std::collections::range module from docs | Simon Sapin | -0/+1 |
| 2018-03-29 | Move RangeArguments to {core::std}::ops and rename to RangeBounds | Simon Sapin | -2/+6 |
| 2018-03-29 | Move alloc::Bound to {core,std}::ops | Simon Sapin | -1/+2 |
| 2018-03-28 | Rollup merge of #49400 - Diggsey:shrink-to, r=joshtriplett | kennytm | -0/+68 |
| 2018-03-27 | Implement `shrink_to` method on collections | Diggory Blake | -0/+68 |
| 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 | -29/+127 |
| 2018-03-06 | Rollup merge of #47463 - bluss:fused-iterator, r=alexcrichton | kennytm | -14/+14 |
| 2018-03-05 | Remove a couple of `isize` references from hashmap docs | Tobias Bucher | -29/+29 |
| 2018-03-03 | core: Update stability attributes for FusedIterator | Ulrik Sverdrup | -14/+14 |
| 2018-03-03 | core: Stabilize FusedIterator | Ulrik Sverdrup | -14/+14 |
| 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-20 | Rollup merge of #47578 - arthurprs:btree-doc, r=alexcrichton | Guillaume Gomez | -2/+2 |
| 2018-01-20 | Rename std::ptr::Shared to NonNull | Simon Sapin | -3/+3 |
| 2018-01-19 | Update BTreeMap recommendation | Arthur Silva | -2/+2 |
| 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 |