| Age | Commit message (Expand) | Author | Lines |
| 2016-04-12 | std: Stabilize APIs for the 1.9 release | Alex Crichton | -2/+1 |
| 2016-04-06 | Rollup merge of #32668 - frewsxcv:hashmap-address-fixme, r=alexcrichton | Steve Klabnik | -8/+4 |
| 2016-04-01 | Implement `values_mut` on `HashMap`. | Corey Farwell | -0/+61 |
| 2016-04-01 | Address FIXMEs related to short lifetimes in `HashMap`. | Corey Farwell | -8/+4 |
| 2016-03-30 | Test that HashMap, HashSet, and their iterators are properly covariant | Jonathan S | -0/+14 |
| 2016-03-30 | Fix the variances of HashMap and HashSet iterators | Jonathan S | -17/+13 |
| 2016-03-30 | Remove no longer necessary coercions to fn pointer types. | Corey Farwell | -8/+0 |
| 2016-03-28 | style: Use `iter` for IntoIterator parameter names | Kamal Marhubi | -4/+4 |
| 2016-03-22 | Auto merge of #32058 - pczarn:hashmap-initial-refactoring, r=apasel422 | bors | -182/+183 |
| 2016-03-22 | f clarification, docs | Piotr Czarnecki | -0/+5 |
| 2016-03-17 | fixup Cleaner Recover::replace | Piotr Czarnecki | -11/+15 |
| 2016-03-15 | Use issue number from rust-lang/rust, not rust-lang/rfcs. | Stu Black | -2/+2 |
| 2016-03-14 | Expose the key of Entry variants for HashMap and BTreeMap. | Stu Black | -0/+49 |
| 2016-03-12 | std: Clean out deprecated APIs | Alex Crichton | -20/+0 |
| 2016-03-06 | fix Recover::replace | Piotr Czarnecki | -2/+7 |
| 2016-03-05 | Turn 2 assertions into debug assertions | Piotr Czarnecki | -2/+2 |
| 2016-03-05 | Add tests | Piotr Czarnecki | -2/+40 |
| 2016-03-05 | Refactor fn robin_hood | Piotr Czarnecki | -15/+14 |
| 2016-03-05 | Add `InternalEntry` for use in all searches. | Piotr Czarnecki | -159/+109 |
| 2016-03-05 | Rename 'distance' -> 'displacement' | Piotr Czarnecki | -4/+4 |
| 2016-02-23 | Register new snapshots | Aaron Turon | -2/+2 |
| 2016-02-15 | clarify how insert() doesn't update keys | Jack O'Connor | -3/+4 |
| 2016-02-11 | Auto merge of #31357 - rthomas:hashers, r=alexcrichton | bors | -0/+7 |
| 2016-02-11 | Add a public hasher function for HashSet and HashMap | Ryan Thomas | -0/+7 |
| 2016-02-04 | Rollup merge of #31415 - tshepang:2-space-indent, r=steveklabnik | Steve Klabnik | -3/+3 |
| 2016-02-04 | doc: Rust indents are 4-space wide by convention | Tshepang Lekhonkhobe | -3/+3 |
| 2016-02-02 | Ensure capacity returned of HashMap is max(capacity, length). | Ryan Thomas | -1/+29 |
| 2016-01-26 | Auto merge of #31081 - alexcrichton:stabilize-hasher, r=aturon | bors | -58/+66 |
| 2016-01-26 | std: Stabilize custom hasher support in HashMap | Alex Crichton | -58/+66 |
| 2016-01-19 | Add examples of the Entry API to the HashMap documentation. | Nathan Kleyn | -0/+29 |
| 2016-01-14 | Require stability annotations on fields of tuple variants | Vadim Petrochenkov | -2/+6 |
| 2015-12-17 | Remove unused imports | Jeffrey Seyfried | -1/+0 |
| 2015-12-10 | std: Remove deprecated functionality from 1.5 | Alex Crichton | -12/+11 |
| 2015-12-05 | std: Stabilize APIs for the 1.6 release | Alex Crichton | -8/+2 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+4 |
| 2015-11-14 | docs: Clarify insertion behavior for maps | Vadim Petrochenkov | -2/+3 |
| 2015-11-04 | Add note about HashMap::capacity's bounds | Steve Klabnik | -0/+3 |
| 2015-10-22 | Document replacement behavior in some collections | Steve Klabnik | -2/+8 |
| 2015-10-13 | Correct spelling in docs | Andrew Paseltiner | -2/+2 |
| 2015-08-31 | Implement RFC 839 for `{HashMap, HashSet}` | Andrew Paseltiner | -0/+24 |
| 2015-08-28 | implement RFC 1194 | Andrew Paseltiner | -4/+33 |
| 2015-08-15 | std: Add issues to all unstable features | Alex Crichton | -7/+14 |
| 2015-08-12 | Remove all unstable deprecated functionality | Alex Crichton | -14/+2 |
| 2015-07-27 | Show appropriate feature flags in docs | Steve Klabnik | -3/+6 |
| 2015-07-09 | Use vec![elt; n] where possible | Ulrik Sverdrup | -3/+3 |
| 2015-06-17 | std: Split the `std_misc` feature | Alex Crichton | -13/+12 |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -1/+1 |
| 2015-05-17 | Make debug builders take &mut self, add entries method | Steven Fackler | -1/+1 |
| 2015-05-16 | Small typo in the docs | Emilio Cobos Álvarez | -1/+1 |
| 2015-05-10 | Rollup merge of #25240 - bluss:doc-hashmap-entry, r=steveklabnik | Steve Klabnik | -0/+18 |