| Age | Commit message (Expand) | Author | Lines |
| 2021-07-18 | Rollup merge of #87170 - xFrednet:clippy-5393-add-diagnostic-items, r=Manishe... | Yuki Okushi | -0/+1 |
| 2021-07-15 | Added diagnostic items to structs and traits for Clippy | xFrednet | -0/+1 |
| 2021-07-12 | Make BTreeSet::split_off name elements like other set methods do | Stein Somers | -4/+4 |
| 2021-07-08 | BTree: lazily locate leaves in rangeless iterators | Stein Somers | -68/+171 |
| 2021-07-08 | Auto merge of #86982 - GuillaumeGomez:rollup-7sbye3c, r=GuillaumeGomez | bors | -9/+11 |
| 2021-07-08 | Rollup merge of #86789 - janikrabe:btreeset-drainfilter-doc, r=kennytm | Guillaume Gomez | -9/+11 |
| 2021-07-08 | Auto merge of #86520 - ssomers:btree_iterators_checked_unwrap, r=Mark-Simulacrum | bors | -24/+10 |
| 2021-07-08 | Rollup merge of #86917 - notriddle:notriddle/from-try-reserve-error, r=JohnTitor | Yuki Okushi | -0/+1 |
| 2021-07-06 | Add doc comment for `impl From<LayoutError> for TryReserveError` | Michael Howell | -0/+1 |
| 2021-07-06 | Stabilize Vec<T>::shrink_to | Yoh Deadfall | -4/+2 |
| 2021-07-06 | Rollup merge of #86852 - Amanieu:remove_doc_aliases, r=joshtriplett | Yuki Okushi | -7/+0 |
| 2021-07-01 | Document iteration order of `retain` functions | Janik Rabe | -0/+2 |
| 2021-07-01 | Update BTreeSet::drain_filter documentation | Janik Rabe | -9/+11 |
| 2021-07-01 | Implement changes suggested by @Amanieu | Ian Wahbe | -10/+29 |
| 2021-06-30 | impl From<[(K, V); N]> for std::collections | bstrie | -1/+131 |
| 2021-06-30 | Remove "length" doc aliases | Amanieu d'Antras | -5/+0 |
| 2021-06-30 | Remove "delete" doc aliases | Amanieu d'Antras | -2/+0 |
| 2021-06-29 | Add non-mutable methods to `Cursor` | Ian Wahbe | -0/+17 |
| 2021-06-29 | add head/tail methods to linked list mutable cursor | Ian Wahbe | -0/+154 |
| 2021-06-25 | Fix a few misspellings. | Eric Huss | -2/+2 |
| 2021-06-21 | BTree: consistently avoid unwrap_unchecked in iterators | Stein Somers | -24/+10 |
| 2021-06-20 | Auto merge of #85980 - ssomers:btree_cleanup_LeafRange, r=Mark-Simulacrum | bors | -51/+111 |
| 2021-06-16 | Add doc(hidden) to all __iterator_get_unchecked | Jacob Hoffman-Andrews | -0/+3 |
| 2021-06-09 | BTree: encapsulate LeafRange better & some debug asserts | Stein Somers | -51/+111 |
| 2021-06-06 | Rollup merge of #85930 - mominul:array_into_iter, r=m-ou-se | Yuki Okushi | -2/+1 |
| 2021-06-02 | Stabilize VecDeque::partition_point. | Mara Bos | -2/+1 |
| 2021-06-02 | Bump vecdeque_binary_search stabilization to 1.54. | Mara Bos | -3/+3 |
| 2021-06-02 | Bumped `vecdeque_binary_search` stabilization version to 1.53.0 | SOFe | -3/+3 |
| 2021-06-02 | Stabilize `vecdeque_binary_search` | SOFe | -7/+3 |
| 2021-06-02 | Replace IntoIter::new with IntoIterator::into_iter in std | Muhammad Mominul Huque | -2/+1 |
| 2021-05-30 | Improve Debug impls for LinkedList reference iterators to show items | Frank Steffahn | -2/+18 |
| 2021-05-29 | Fix unsoundness of Debug implementation for linked_list::IterMut | Frank Steffahn | -6/+3 |
| 2021-05-21 | Remove surplus prepend LinkedList fn | Jubilee Young | -21/+0 |
| 2021-05-18 | Auto merge of #84767 - scottmcm:try_trait_actual, r=lcnr | bors | -2/+2 |
| 2021-05-16 | mark internal inplace_iteration traits as hidden | The8472 | -0/+2 |
| 2021-05-07 | BTree: no longer copy keys and values before dropping them | Stein Somers | -45/+95 |
| 2021-05-06 | Perf Experiment: Wait, what if I just skip the trait alias | Scott McMurray | -3/+3 |
| 2021-05-06 | Bootstrapping preparation for the library | Scott McMurray | -3/+3 |
| 2021-05-06 | Rollup merge of #84328 - Folyd:stablize_map_into_keys_values, r=m-ou-se | Dylan DPC | -16/+14 |
| 2021-05-05 | alloc: Add unstable Cfg feature `no-global_oom_handling` | John Ericson | -0/+11 |
| 2021-05-05 | Bump map_into_keys_values stable version to 1.54.0. | Mara Bos | -14/+14 |
| 2021-04-28 | Minor grammar tweaks for readability | Ben-Lichtman | -4/+4 |
| 2021-04-22 | Improve BinaryHeap::retain. | Mara Bos | -32/+53 |
| 2021-04-19 | Stablize {HashMap,BTreeMap}::into_{keys,values} | Folyd | -16/+14 |
| 2021-04-15 | VecDeque: Improve doc comments in binary search fns | Vojtech Kral | -5/+23 |
| 2021-04-15 | VecDeque: Add partition_point() #78021 | Vojtech Kral | -0/+45 |
| 2021-04-15 | VecDeque: binary_search_by(): return right away if hit found at back.first() ... | Vojtech Kral | -1/+4 |
| 2021-04-12 | Stabilize BTree{Map,Set}::retain | Jubilee Young | -4/+2 |
| 2021-04-04 | Rollup merge of #82726 - ssomers:btree_node_rearange, r=Mark-Simulacrum | Dylan DPC | -167/+165 |
| 2021-04-04 | Auto merge of #83267 - ssomers:btree_prune_range_search_overlap, r=Mark-Simul... | bors | -27/+43 |