| Age | Commit message (Expand) | Author | Lines |
| 2021-10-11 | Rollup merge of #89726 - jkugelman:must-use-alloc-constructors, r=joshtriplett | Guillaume Gomez | -0/+1 |
| 2021-10-10 | Add #[must_use] to conversions that move self | John Kugelman | -0/+2 |
| 2021-10-10 | Add #[must_use] to alloc constructors | John Kugelman | -0/+1 |
| 2021-10-04 | Rollup merge of #89443 - cuviper:btree-hash-len, r=dtolnay | Jubilee | -0/+1 |
| 2021-10-03 | Rollup merge of #87679 - ssomers:btree_comments, r=joshtriplett | Manish Goregaokar | -5/+5 |
| 2021-10-01 | Include the length in BTree hashes | Josh Stone | -0/+1 |
| 2021-09-26 | Auto merge of #89144 - sexxi-goose:insig_stdlib, r=nikomatsakis | bors | -0/+2 |
| 2021-09-22 | PR fixup | Aman Arora | -2/+2 |
| 2021-09-21 | 2229: Annotate stdlib with insignficant dtors | Aman Arora | -0/+2 |
| 2021-09-16 | Add IntoIterator intra doc link to various collections | est31 | -1/+2 |
| 2021-09-07 | Auto merge of #88448 - xu-cheng:btree-blk-build, r=Mark-Simulacrum | bors | -5/+31 |
| 2021-08-28 | BTreeMap::from_iter: use bulk building to improve the performance | Cheng XU | -5/+31 |
| 2021-08-18 | BTree: remove Ord bound from new | Gary Guo | -9/+4 |
| 2021-08-17 | BTree: refine some comments | Stein Somers | -5/+5 |
| 2021-08-02 | BTree: merge the complication introduced by #81486 and #86031 | Stein Somers | -50/+40 |
| 2021-08-01 | Auto merge of #86031 - ssomers:btree_lazy_iterator, r=Mark-Simulacrum | bors | -31/+26 |
| 2021-07-24 | Auto merge of #84111 - bstrie:hashfrom, r=joshtriplett | bors | -1/+28 |
| 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-08 | BTree: lazily locate leaves in rangeless iterators | Stein Somers | -31/+26 |
| 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 | -1/+28 |
| 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-06-09 | BTree: encapsulate LeafRange better & some debug asserts | Stein Somers | -36/+12 |
| 2021-05-07 | BTree: no longer copy keys and values before dropping them | Stein Somers | -6/+15 |
| 2021-05-05 | Bump map_into_keys_values stable version to 1.54.0. | Mara Bos | -14/+14 |
| 2021-04-19 | Stablize {HashMap,BTreeMap}::into_{keys,values} | Folyd | -16/+14 |
| 2021-04-12 | Stabilize BTree{Map,Set}::retain | Jubilee Young | -2/+1 |
| 2021-03-18 | Rollup merge of #82434 - jyn514:hash, r=JohnTitor | Dylan DPC | -3/+4 |
| 2021-03-04 | Add tracking issue for map_try_insert. | Mara Bos | -1/+1 |
| 2021-03-04 | Add BTreeMap::try_insert and btree_map::OccupiedError. | Mara Bos | -1/+35 |
| 2021-03-01 | Add diagnostic items | Cameron Steffen | -0/+1 |
| 2021-02-23 | Add more links between hash and btree collections | Joshua Nelson | -3/+4 |
| 2021-02-15 | BTree: move more shared iterator code into navigate.rs | Stein Somers | -56/+35 |
| 2021-02-14 | Auto merge of #81956 - ssomers:btree_post_75200, r=Mark-Simulacrum | bors | -19/+7 |
| 2021-02-10 | BTree: remove outdated traces of coercions | Stein Somers | -19/+7 |
| 2021-02-09 | BTreeMap: disentangle Drop implementation from IntoIter | Stein Somers | -26/+34 |
| 2021-02-08 | Auto merge of #81361 - ssomers:btree_drainy_refactor_7, r=Mark-Simulacrum | bors | -12/+12 |
| 2021-02-08 | Auto merge of #79245 - ssomers:btree_curb_ord_bound, r=dtolnay | bors | -13/+4 |
| 2021-02-07 | Rollup merge of #81526 - ojeda:btree-use-unwrap_unchecked, r=scottmcm | Guillaume Gomez | -6/+5 |
| 2021-02-06 | Rollup merge of #81434 - ssomers:btree_drain_filter_doc_update, r=dtolnay | Jonas Schievink | -15/+17 |
| 2021-02-06 | BTreeMap: remove Ord bound where it is absent elsewhere | Stein Somers | -13/+4 |
| 2021-02-06 | BTreeMap: fix documentation of unstable public members | Stein Somers | -15/+17 |
| 2021-02-06 | Rollup merge of #81610 - ssomers:btree_emphasize_ord_bound, r=dtolnay | Mara Bos | -26/+70 |
| 2021-02-02 | BTreeMap: make Ord bound explicit, compile-test its absence | Stein Somers | -26/+70 |
| 2021-01-31 | Add doc aliases for "delete" | Konrad Borowski | -0/+1 |
| 2021-01-29 | btree: use Option's unwrap_unchecked() | Miguel Ojeda | -6/+5 |
| 2021-01-26 | BTreeMap: stop tree from being owned by non-root node | Stein Somers | -3/+3 |
| 2021-01-24 | BTreeMap: lightly refactor the split_off implementation | Stein Somers | -12/+12 |