| Age | Commit message (Expand) | Author | Lines |
| 2019-10-01 | Remove unneeded `fn main` blocks from docs | Lzu Tao | -5/+3 |
| 2019-08-16 | Rename CollectionAllocError to TryReserveError | Simon Sapin | -2/+2 |
| 2019-07-16 | Test that maplike FromIter satisfies uniqueness | Nick Hynes | -1/+3 |
| 2019-05-16 | Comment why get_or_insert returns &T | Josh Stone | -0/+4 |
| 2019-05-16 | Add a hash_set_entry tracking issue | Josh Stone | -2/+2 |
| 2019-05-16 | Add entry-like methods to HashSet | Josh Stone | -0/+52 |
| 2019-04-24 | Replace the robin-hood hash table with hashbrown | Amanieu d'Antras | -2/+0 |
| 2019-04-24 | Mark HashSet functions with #[inline] | Amanieu d'Antras | -0/+45 |
| 2019-04-24 | Add try_reserve to HashSet | Amanieu d'Antras | -0/+24 |
| 2019-04-24 | Remove the Recover trait for HashSet | Amanieu d'Antras | -4/+9 |
| 2019-04-03 | improve worst-case performance of HashSet.is_subset | Stein Somers | -1/+5 |
| 2019-03-31 | libstd: deny(elided_lifetimes_in_paths) | Mazdak Farrokhzad | -10/+10 |
| 2019-03-16 | Rollup merge of #59082 - alexreg:cosmetic-2-doc-comments, r=Centril | kennytm | -1/+1 |
| 2019-03-11 | Improvements to comments in libstd, libcore, liballoc. | Alexander Regueiro | -1/+1 |
| 2019-03-09 | Use lifetime contravariance to elide more lifetimes in core+alloc+std | Scott McMurray | -4/+4 |
| 2019-02-28 | libstd => 2018 | Taiki Endo | -6/+6 |
| 2019-02-25 | Rollup merge of #58370 - nox:relax-bounds, r=dtolnay | Mazdak Farrokhzad | -118/+114 |
| 2019-02-20 | Rollup merge of #58553 - scottmcm:more-ihle, r=Centril | kennytm | -24/+24 |
| 2019-02-17 | Use more impl header lifetime elision | Scott McMurray | -24/+24 |
| 2019-02-13 | Relax some Hash bounds on HashMap<K, V, S> and HashSet<T, S> | Anthony Ramine | -118/+114 |
| 2019-02-10 | libs: doc comments | Alexander Regueiro | -2/+2 |
| 2019-01-09 | Fix poor worst case performance of is_disjoint | Stein Somers | -2/+5 |
| 2019-01-09 | Merge remote-tracking branch 'upstream/master' | Stein Somers | -11/+1 |
| 2019-01-03 | Fix repeated word typos | Wiktor Kuchta | -1/+1 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-21 | Fix poor worst case performance of set intersection (and union, somewhat) on ... | Stein Somers | -6/+56 |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -6/+6 |
| 2018-12-02 | Update issue number of `shrink_to` methods to point the tracking issue | Hidehito Yabuuchi | -1/+1 |
| 2018-06-18 | Prefer use of owned values in examples | Kornel | -12/+12 |
| 2018-03-27 | Implement `shrink_to` method on collections | Diggory Blake | -0/+28 |
| 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 | -2/+2 |
| 2018-03-03 | core: Update stability attributes for FusedIterator | Ulrik Sverdrup | -7/+7 |
| 2018-03-03 | core: Stabilize FusedIterator | Ulrik Sverdrup | -7/+7 |
| 2018-01-05 | Write examples for {BTree,Hash}Set::{get,replace,take} | Stjepan Glavina | -0/+33 |
| 2017-12-09 | Use Try syntax for Option in place of macros or match | Matt Brubeck | -14/+6 |
| 2017-09-15 | HashMap::new and HashSet::new do not allocate | Jon Gjengset | -0/+3 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -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-05-20 | Stabilize library features for 1.18.0 | Steven Fackler | -32/+21 |
| 2017-04-22 | Fix invalid linkage | Guillaume Gomez | -1/+1 |
| 2017-04-13 | Various consistency and phrasing fixes in std::collections' docs | lukaramu | -2/+1 |
| 2017-04-13 | Various fixes throughout std::collections' docs | lukaramu | -20/+41 |
| 2017-04-13 | Update std::collections' docs to use iterator (etc.) boilerplate | lukaramu | -7/+49 |