| Age | Commit message (Expand) | Author | Lines |
| 2023-03-20 | Remove outdated comments | Maybe Waffle | -7/+0 |
| 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 |
| 2021-07-24 | Update std_collections_from_array stability version | bstrie | -1/+1 |
| 2021-07-24 | Rollup merge of #86790 - janikrabe:retain-iter-order-doc, r=m-ou-se | Yuki Okushi | -0/+1 |
| 2021-07-06 | Stabilize Vec<T>::shrink_to | Yoh Deadfall | -2/+1 |
| 2021-07-01 | Document iteration order of `retain` functions | Janik Rabe | -0/+1 |
| 2021-06-30 | impl From<[(K, V); N]> for std::collections | bstrie | -4/+33 |
| 2021-06-30 | Remove "length" doc aliases | Amanieu d'Antras | -1/+0 |
| 2021-06-30 | Remove "delete" doc aliases | Amanieu d'Antras | -1/+0 |
| 2021-04-21 | Replace all `fmt.pad` with `debug_struct` | Christiaan Dirkx | -1/+1 |
| 2021-02-23 | Add more links between hash and btree collections | Joshua Nelson | -1/+2 |
| 2021-01-31 | Add doc aliases for "delete" | Konrad Borowski | -0/+1 |
| 2021-01-26 | shrink_to shouldn't panic on len greater than capacity | Thom Wiggers | -3/+1 |
| 2021-01-16 | Clarify what the effects of a 'logic error' are | Chris Jefferson | -1/+3 |
| 2020-12-28 | Add "length" as doc alias to len methods | Konrad Borowski | -0/+1 |
| 2020-12-26 | Use the hashbrown::{HashMap,HashSet} `clone_from` impls. | David Adler | -1/+17 |