| Age | Commit message (Expand) | Author | Lines |
| 2023-12-04 | Specialize `count` too | Benoît du Garreau | -0/+12 |
| 2023-12-04 | `HashMap`/`HashSet`: forward `fold` implementations of iterators | Benoît du Garreau | -0/+58 |
| 2023-11-02 | Add insta-stable std::hash::{DefaultHasher, RandomState} exports | ltdk | -3/+3 |
| 2023-11-02 | Move RandomState and DefaultHasher into std::hash, but don't export for now | ltdk | -2/+2 |
| 2023-10-07 | Auto merge of #109214 - tosti007:std_collection_hash_new_rework, r=workingjub... | bors | -1/+1 |
| 2023-08-07 | Increase clarity about Hash - Eq consistency in HashMap and HashSet docs | Easyoakland | -3/+4 |
| 2023-07-12 | avoid ambiguous word | Tshepang Mbambo | -1/+1 |
| 2023-07-12 | update ancient note | Tshepang Mbambo | -2/+2 |
| 2023-06-15 | Auto merge of #104455 - the8472:dont-drain-on-drop, r=Amanieu | bors | -25/+24 |
| 2023-06-14 | Rollup merge of #107619 - stepancheg:hash-set-insert, r=Amanieu | Matthias Krüger | -1/+3 |
| 2023-06-14 | update hashbrown and replace Hash{Set,Map}::DrainFilter with ExtractIf | The 8472 | -25/+24 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -1/+0 |
| 2023-03-29 | Use with_capacity_and_hasher instead of using base | tosti007 | -1/+1 |
| 2023-03-20 | Remove outdated comments | Maybe Waffle | -7/+0 |
| 2023-02-03 | Specify behavior of HashSet::insert | Stiopa Koltsov | -1/+3 |
| 2023-01-07 | docs: make `HashSet::retain` doctest more clear | Ezra Shaw | -1/+1 |
| 2022-10-29 | fix typo in hashmap and hashset try_reserve method | joseLuís | -1/+1 |
| 2022-10-02 | Make Hash{Set,Map}::with_hasher unstably const | Nixon Enraght-Moony | -1/+2 |
| 2022-09-02 | Fix `std::collections::HashSet::drain` documentation | Wojciech Kordalski | -1/+1 |
| 2022-06-19 | Fix documentation for with_capacity and reserve families of methods | jmaargh | -9/+16 |
| 2022-06-06 | Apply suggestions from code review | nzrq | -2/+3 |
| 2022-06-04 | Update library/std/src/collections/hash/set.rs | nzrq | -1/+1 |
| 2022-06-03 | Update set.rs | nzrq | -6/+4 |
| 2022-06-03 | Add note to documentation of HashSet::intersection | nzrq | -0/+7 |
| 2022-05-31 | Tweak insert docs | Ariel Davis | -2/+3 |
| 2022-05-23 | Put a bound on collection misbehavior | Christopher Durham | -7/+8 |
| 2022-05-20 | Add complexity estimation of iterating over HashSet and HashMap | AngelicosPhosphoros | -0/+10 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -1/+1 |
| 2022-03-11 | Rollup merge of #94826 - allgoewer:fix-retain-documentation, r=yaahc | Dylan DPC | -1/+1 |
| 2022-03-11 | Improve doc wording for retain on some collections | Maik Allgöwer | -1/+1 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -9/+9 |
| 2022-02-25 | Switch bootstrap cfgs | Mark Rousskov | -10/+10 |
| 2022-02-19 | Collections: improve the documentation of drain members | Stein Somers | -1/+6 |
| 2022-02-01 | add a rustc::query_stability lint | lcnr | -0/+10 |
| 2021-12-11 | Remove unnecessary bounds for some Hash{Map,Set} methods | Xidorn Quan | -22/+22 |
| 2021-12-09 | Replace iterator-based set construction by *Set::From<[T; N]> | Júnior Bassani | -38/+37 |
| 2021-12-04 | Use IntoIterator for array impl everywhere. | Mara Bos | -1/+1 |
| 2021-10-31 | Rollup merge of #89835 - jkugelman:must-use-expensive-computations, r=joshtri... | Matthias Krüger | -0/+8 |
| 2021-10-28 | Revert "Add rustc lint, warning when iterating over hashmaps" | Mark Rousskov | -10/+0 |
| 2021-10-24 | Rollup merge of #89558 - lcnr:query-stable-lint, r=estebank | Matthias Krüger | -0/+10 |
| 2021-10-21 | Clarify undefined behaviour for binary heap, btree and hashset | Wilfred Hughes | -2/+2 |
| 2021-10-15 | add a `rustc::query_stability` lint | lcnr | -0/+10 |
| 2021-10-12 | Add #[must_use] to expensive computations | John Kugelman | -0/+8 |
| 2021-10-10 | Add #[must_use] to core and std constructors | John Kugelman | -0/+2 |
| 2021-10-04 | Stabilize try_reserve | Kornel | -2/+1 |
| 2021-10-02 | Make diangostic item names consistent | Cameron Steffen | -1/+1 |
| 2021-09-16 | Add IntoIterator intra doc link to various collections | est31 | -1/+2 |
| 2021-08-08 | Auto merge of #86879 - YohDeadfall:stabilize-vec-shrink-to, r=dtolnay | bors | -2/+1 |
| 2021-08-08 | Bump shrink_to stabilization to Rust 1.56 | David Tolnay | -1/+1 |
| 2021-07-24 | Auto merge of #84111 - bstrie:hashfrom, r=joshtriplett | bors | -4/+33 |