| Age | Commit message (Expand) | Author | Lines |
| 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/+6 |
| 2017-09-12 | Addressed @BurntSuchi's remarks regarding Entry::replace | Jeroen Bollen | -4/+3 |
| 2017-09-05 | Avoid weird or_insert_with example | Jon Gjengset | -3/+1 |
| 2017-09-05 | Add or_default to Entry APIs | Jon Gjengset | -0/+29 |
| 2017-09-03 | Marked `Entry::replace` as unstable. | Jeroen Bollen | -1/+2 |
| 2017-09-03 | Added a way to retrieve the key out of a HashMap when it's being replaced. | Jeroen Bollen | -0/+30 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -18/+18 |
| 2017-08-10 | Auto merge of #43582 - ivanbakel:unused_mut_ref, r=arielb1 | bors | -2/+2 |
| 2017-08-01 | Add doc example for HashSet::drain. | Corey Farwell | -0/+16 |
| 2017-08-01 | Remove unnecessary clones in doc examples. | Corey Farwell | -11/+11 |
| 2017-08-01 | Show the capacity in HashSet::with_capacity doc example. | Corey Farwell | -0/+1 |
| 2017-08-01 | Remove unnecessary 'mut' bindings. | Corey Farwell | -2/+2 |
| 2017-08-01 | Indicate HashSet is code-like in docs. | Corey Farwell | -1/+1 |
| 2017-08-01 | Show that the capacity changed in HashSet::reserve doc example. | Corey Farwell | -0/+1 |
| 2017-08-01 | Add doc example for HashSet::hasher. | Corey Farwell | -0/+11 |
| 2017-08-01 | Fixed extra cases found in better checking. | Isaac van Bakel | -1/+1 |
| 2017-08-01 | Fixed all unnecessary muts in language core | Isaac van Bakel | -1/+1 |
| 2017-07-26 | Rollup merge of #42959 - SimonSapin:nonzero-checked, r=sfackler | Mark Simulacrum | -3/+3 |
| 2017-07-23 | Fix some doc/comment typos. | Bruce Mitchener | -1/+1 |
| 2017-07-22 | Add conversions from references to NonZero pointers, Unique, and Shared | Simon Sapin | -1/+1 |
| 2017-07-22 | Rename {NonZero,Shared,Unique}::new to new_unchecked | Simon Sapin | -3/+3 |
| 2017-07-06 | Add annotations to the resize fn #39791 | Ryan Thomas | -0/+2 |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -6/+5 |
| 2017-06-30 | Revert "Stabilize RangeArgument" | Steven Fackler | -2/+0 |
| 2017-06-24 | Stabilize RangeArgument | Steven Fackler | -0/+2 |
| 2017-06-23 | Relax Debug constraints when debugging {HashMap,BTreeMap}::{Keys,Values}. | Federico Ravasio | -2/+2 |
| 2017-06-21 | Impl Clone for DefaultHasher | Leonardo Yvens | -1/+1 |
| 2017-06-13 | Merge crate `collections` into `alloc` | Murarth | -6/+6 |
| 2017-05-21 | Auto merge of #41904 - sfackler:1.18-stabilization, r=alexcrichton | bors | -34/+22 |
| 2017-05-20 | Stabilize library features for 1.18.0 | Steven Fackler | -34/+22 |
| 2017-05-20 | migrate everything to using mem::needs_drop | Alexis Beingessner | -2/+1 |
| 2017-05-04 | Deprecate heap::EMPTY in favour of Unique::empty or otherwise. | Alexis Beingessner | -1/+2 |
| 2017-05-04 | fallout from NonZero/Unique/Shared changes | Alexis Beingessner | -9/+12 |
| 2017-04-23 | Auto merge of #41437 - cuviper:remove-unstable-deprecated, r=alexcrichton | bors | -7/+0 |
| 2017-04-22 | Fix invalid linkage | Guillaume Gomez | -2/+2 |
| 2017-04-20 | Remove OccupiedEntry::remove_pair | Josh Stone | -7/+0 |
| 2017-04-13 | Various consistency and phrasing fixes in std::collections' docs | lukaramu | -14/+11 |
| 2017-04-13 | Various fixes throughout std::collections' docs | lukaramu | -66/+88 |
| 2017-04-13 | Update std::collections' docs to use iterator (etc.) boilerplate | lukaramu | -14/+98 |
| 2017-04-04 | Simplify HashMap Bucket interface | arthurprs | -191/+165 |
| 2017-03-22 | Simplify hash table drops | Josh Stone | -47/+18 |
| 2017-03-19 | Rollup merge of #40621 - jswalden:dependant-spelling-fix, r=sfackler | Corey Farwell | -2/+2 |
| 2017-03-17 | Fix a spelling error in HashMap documentation, and slightly reword it to be m... | Jeff Walden | -2/+2 |
| 2017-03-17 | Stabilize rc_raw feature, closes #37197 | Aaron Turon | -1/+1 |
| 2017-03-11 | Implement placement-in protocol for `HashMap` | Charlie Fan | -5/+182 |
| 2017-03-03 | Reduce size overhead of adaptative hashmap | arthurprs | -24/+74 |
| 2017-02-20 | Simplify adaptive hashmap | arthurprs | -23/+11 |