| Age | Commit message (Expand) | Author | Lines |
| 2022-03-11 | Rollup merge of #94826 - allgoewer:fix-retain-documentation, r=yaahc | Dylan DPC | -5/+5 |
| 2022-03-11 | Improve doc wording for retain on some collections | Maik Allgöwer | -5/+5 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -17/+17 |
| 2022-03-10 | Use MaybeUninit in VecDeque to remove the undefined behavior of slice | JmPotato | -30/+95 |
| 2022-03-09 | BTreeMap::entry: Avoid allocating if no insertion | Frank King | -41/+86 |
| 2022-03-07 | BTree: remove dead data needlessly complicating insert | Stein Somers | -40/+19 |
| 2022-02-28 | Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC | Matthias Krüger | -2/+2 |
| 2022-02-20 | BTree: simplify test code | Stein Somers | -138/+118 |
| 2022-02-19 | Fix some confusing wording and improve slice-search-related docs | r00ster91 | -8/+20 |
| 2022-02-19 | Collections: improve the documentation of drain members | Stein Somers | -13/+23 |
| 2022-02-17 | Rollup merge of #89869 - kpreid:from-doc, r=yaahc | Matthias Krüger | -0/+8 |
| 2022-02-14 | Describe VecDeque with more consistent names | Stein Somers | -110/+110 |
| 2022-01-18 | Replace iterator-based construction of collections by `Into<T>` | Júnior Bassani | -40/+35 |
| 2022-01-16 | Rollup merge of #92706 - umanwizard:btree, r=dtolnay | Matthias Krüger | -4/+11 |
| 2022-01-15 | Tweak btree iterator wording to not use 'yield' | David Tolnay | -4/+5 |
| 2022-01-11 | Address review comments | Brennan Vincent | -4/+4 |
| 2022-01-11 | Auto merge of #92070 - rukai:replace_vec_into_iter_with_array_into_iter, r=Ma... | bors | -10/+10 |
| 2022-01-09 | Clarify explicitly that BTree{Map,Set} are ordered. | Brennan Vincent | -4/+10 |
| 2022-01-09 | Compute most of Public/Exported access level in rustc_resolve | Lamb | -0/+3 |
| 2022-01-09 | eplace usages of vec![].into_iter with [].into_iter | Lucas Kent | -10/+10 |
| 2021-12-29 | fix typo in btree/vec doc: Self -> self | Veeupup | -2/+2 |
| 2021-12-14 | Rollup merge of #91529 - TennyZhuang:try_reserve_binary_heap, r=yaahc | Matthias Krüger | -0/+79 |
| 2021-12-13 | Rollup merge of #91749 - ssomers:btree_comments, r=Mark-Simulacrum | Matthias Krüger | -55/+58 |
| 2021-12-12 | Rollup merge of #91814 - japm48:spelling-fix, r=RalfJung | Matthias Krüger | -6/+6 |
| 2021-12-12 | Rollup merge of #91746 - ssomers:btree_tests, r=Mark-Simulacrum | Matthias Krüger | -6/+38 |
| 2021-12-12 | doc: fix typo in comments | japm48 | -6/+6 |
| 2021-12-11 | update feature gate | TennyZhuang | -4/+4 |
| 2021-12-11 | add BinaryHeap::try_reserve and BinaryHeap::try_reserve_exact | TennyZhuang | -0/+79 |
| 2021-12-11 | Auto merge of #91761 - matthiaskrgr:rollup-bjowmvz, r=matthiaskrgr | bors | -20/+19 |
| 2021-12-10 | Rollup merge of #91755 - not-my-profile:fix-const_linked_list_new-since, r=dt... | Matthias Krüger | -1/+1 |
| 2021-12-10 | Rollup merge of #91482 - JosephTLyons:update-HashMap-and-BTreeMap-documentati... | Matthias Krüger | -4/+5 |
| 2021-12-10 | Fix since attribute for const_linked_list_new feature | Martin Fischer | -1/+1 |
| 2021-12-10 | BTree: improve public descriptions and comments | Stein Somers | -55/+58 |
| 2021-12-10 | BTree: assert presence of derived functions | Stein Somers | -0/+32 |
| 2021-12-10 | BTree: rename compile-time assertions to match library/alloc/tests | Stein Somers | -6/+6 |
| 2021-12-09 | Replace iterator-based set construction by *Set::From<[T; N]> | Júnior Bassani | -19/+18 |
| 2021-12-07 | Rollup merge of #91547 - TennyZhuang:suggest_try_reserve, r=scottmcm | Matthias Krüger | -2/+2 |
| 2021-12-05 | Auto merge of #88611 - m-ou-se:array-into-iter-new-deprecate, r=joshtriplett | bors | -7/+7 |
| 2021-12-05 | doc: suggest try_reserve in try_reserve_exact | TennyZhuang | -2/+2 |
| 2021-12-05 | Rollup merge of #91215 - GuillaumeGomez:vec-deque-retain-mut, r=m-ou-se | Matthias Krüger | -3/+34 |
| 2021-12-04 | Use IntoIterator for array impl everywhere. | Mara Bos | -7/+7 |
| 2021-12-04 | Add documentation to more `From::from` implementations. | Kevin Reid | -0/+8 |
| 2021-12-02 | Use `BTreeMap::from()` instead of using `BTreeMap::new()` with `BTreeMap::ins... | Joseph T Lyons | -4/+5 |
| 2021-11-29 | Remove unnecessary check in VecDeque::grow | Cédric Barreteau | -9/+11 |
| 2021-11-25 | Implement VecDeque::retain_mut | Guillaume Gomez | -3/+34 |
| 2021-11-12 | provide a `SpecExtend` trait for `Vec<T>` | Neutron3529 | -0/+8 |
| 2021-10-31 | Rollup merge of #89786 - jkugelman:must-use-len-and-is_empty, r=joshtriplett | Matthias Krüger | -2/+10 |
| 2021-10-31 | Rollup merge of #89835 - jkugelman:must-use-expensive-computations, r=joshtri... | Matthias Krüger | -0/+8 |
| 2021-10-30 | Add #[must_use] to len and is_empty | John Kugelman | -4/+12 |
| 2021-10-31 | Rollup merge of #89899 - jkugelman:must-use-alloc, r=joshtriplett | Matthias Krüger | -18/+57 |