| Age | Commit message (Expand) | Author | Lines |
| 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/+29 |
| 2016-03-30 | Fix the variances of HashMap and HashSet iterators | Jonathan S | -26/+20 |
| 2016-03-30 | Make HashMap's RawBucket covariant | Jonathan S | -18/+23 |
| 2016-03-30 | Remove no longer necessary coercions to fn pointer types. | Corey Farwell | -12/+0 |
| 2016-03-28 | style: Use `iter` for IntoIterator parameter names | Kamal Marhubi | -8/+8 |
| 2016-03-22 | Auto merge of #32058 - pczarn:hashmap-initial-refactoring, r=apasel422 | bors | -224/+250 |
| 2016-03-22 | f clarification, docs | Piotr Czarnecki | -2/+10 |
| 2016-03-22 | f Put and DerefMut | Piotr Czarnecki | -14/+26 |
| 2016-03-21 | f dead code | Piotr Czarnecki | -10/+0 |
| 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 | -81/+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 | Use consistent syntax | Piotr Czarnecki | -3/+3 |
| 2016-03-05 | Refactor fn robin_hood | Piotr Czarnecki | -28/+53 |
| 2016-03-05 | Refactor fn Bucket::next | Piotr Czarnecki | -15/+7 |
| 2016-03-05 | Add `InternalEntry` for use in all searches. | Piotr Czarnecki | -167/+119 |
| 2016-03-05 | Rename 'distance' -> 'displacement' | Piotr Czarnecki | -5/+5 |
| 2016-02-23 | Register new snapshots | Aaron Turon | -2/+2 |
| 2016-02-17 | Rollup merge of #31694 - oconnor663:insertdocs, r=steveklabnik | Steve Klabnik | -3/+4 |
| 2016-02-16 | Avoid iteration when dropping `HashMap`s whose items don't need dropping | Andrew Paseltiner | -1/+4 |
| 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/+14 |
| 2016-02-11 | Add a public hasher function for HashSet and HashMap | Ryan Thomas | -0/+14 |
| 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 | -122/+126 |
| 2016-01-26 | std: Stabilize custom hasher support in HashMap | Alex Crichton | -122/+126 |
| 2016-01-19 | Add examples of the Entry API to the HashMap documentation. | Nathan Kleyn | -0/+29 |
| 2016-01-16 | std: Stabilize APIs for the 1.7 release | Alex Crichton | -1/+0 |
| 2016-01-14 | Require stability annotations on fields of tuple variants | Vadim Petrochenkov | -2/+6 |
| 2015-12-18 | Fix the fallout | Vadim Petrochenkov | -1/+1 |
| 2015-12-17 | Remove unused imports | Jeffrey Seyfried | -2/+0 |
| 2015-12-10 | std: Remove deprecated functionality from 1.5 | Alex Crichton | -20/+18 |
| 2015-12-05 | std: Stabilize APIs for the 1.6 release | Alex Crichton | -11/+3 |
| 2015-11-20 | Rename result variable in HashSet's intersection and union examples | Florian Hahn | -4/+4 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+9 |
| 2015-11-16 | Auto merge of #29830 - petrochenkov:mapdoc, r=alexcrichton | bors | -2/+3 |
| 2015-11-16 | Fix docs for HashSet::insert | Sebastian Hahn | -4/+1 |
| 2015-11-14 | docs: Clarify insertion behavior for maps | Vadim Petrochenkov | -2/+3 |
| 2015-11-06 | Auto merge of #29643 - petrochenkov:stability5, r=alexcrichton | bors | -1/+0 |
| 2015-11-06 | Remove stability annotations from trait impl items | Vadim Petrochenkov | -1/+0 |
| 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 | -4/+16 |
| 2015-10-13 | Correct spelling in docs | Andrew Paseltiner | -2/+2 |