| Age | Commit message (Expand) | Author | Lines |
| 2021-06-11 | Remove unsound TrustedRandomAccess implementations | Frank Steffahn | -28/+1 |
| 2021-04-28 | Minor grammar tweaks for readability | Ben-Lichtman | -4/+4 |
| 2021-04-22 | Improve BinaryHeap::retain. | Mara Bos | -32/+53 |
| 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 |
| 2021-03-30 | Rollup merge of #82331 - frol:feat/std-binary-heap-as-slice, r=Amanieu | Dylan DPC | -0/+21 |
| 2021-03-29 | Updated the tracking issue # | Vlad Frolov | -1/+1 |
| 2021-03-21 | use BITS constant | The8472 | -1/+1 |
| 2021-03-21 | implement TrustedLen and TrustedRandomAccess for VecDeque iterators | The8472 | -3/+77 |
| 2021-03-19 | Rollup merge of #83244 - cuviper:vec_deque-zst, r=m-ou-se | Dylan DPC | -19/+33 |
| 2021-03-18 | BTree: no longer search arrays twice to check Ord | Stein Somers | -33/+27 |
| 2021-03-18 | Auto merge of #81312 - dylni:clarify-btree-range-search-comments, r=m-ou-se | bors | -3/+2 |
| 2021-03-18 | Rollup merge of #82434 - jyn514:hash, r=JohnTitor | Dylan DPC | -3/+4 |
| 2021-03-17 | Fix overflowing length in Vec<ZST> to VecDeque | Josh Stone | -19/+33 |
| 2021-03-17 | BTree: clarify order sanity enforced by range searches | Stein Somers | -7/+29 |
| 2021-03-16 | Fix comments based on review | dylni | -5/+2 |
| 2021-03-15 | Clarify BTree range searching comments | dylni | -1/+3 |
| 2021-03-13 | provide a more realistic example for BinaryHeap::as_slice | Vlad Frolov | -5/+3 |
| 2021-03-09 | Rollup merge of #81127 - hanmertens:binary_heap_sift_down_perf, r=dtolnay | Mara Bos | -2/+2 |
| 2021-03-05 | Rollup merge of #82764 - m-ou-se:map-try-insert, r=Amanieu | Mara | -1/+70 |
| 2021-03-05 | Rollup merge of #80723 - rylev:noop-lint-pass, r=estebank | Mara | -4/+4 |
| 2021-03-04 | Add tracking issue for map_try_insert. | Mara Bos | -4/+4 |
| 2021-03-04 | Implement Error for OccupiedError. | Mara Bos | -0/+13 |
| 2021-03-04 | Improve Debug implementations of OccupiedError. | Mara Bos | -2/+3 |
| 2021-03-04 | Add BTreeMap::try_insert and btree_map::OccupiedError. | Mara Bos | -1/+56 |
| 2021-03-03 | BTree: move blocks around in node.rs | Stein Somers | -167/+165 |
| 2021-03-03 | Fix ui-full-deps suite | Ryan Levick | -4/+4 |
| 2021-03-03 | Rollup merge of #82439 - ssomers:btree_fix_unsafety, r=Mark-Simulacrum | Yuki Okushi | -16/+15 |
| 2021-03-01 | Rollup merge of #82578 - camsteffen:diag-items, r=oli-obk | Joshua Nelson | -0/+4 |
| 2021-03-01 | Rollup merge of #81210 - ssomers:btree_fix_node_size_test, r=Mark-Simulacrum | Joshua Nelson | -5/+6 |
| 2021-03-01 | Add diagnostic items | Cameron Steffen | -0/+4 |
| 2021-03-01 | Auto merge of #82440 - ssomers:btree_fix_casts, r=Mark-Simulacrum | bors | -8/+10 |
| 2021-03-01 | Auto merge of #81094 - ssomers:btree_drainy_refactor_3, r=Mark-Simulacrum | bors | -118/+227 |
| 2021-02-24 | library: Normalize safety-for-unsafe-block comments | Miguel Ojeda | -2/+2 |
| 2021-02-23 | BTree: fix untrue safety | Stein Somers | -16/+15 |
| 2021-02-23 | BTree: no longer define impossible casts | Stein Somers | -8/+10 |
| 2021-02-23 | BTree: split off reusable components from range_search | Stein Somers | -118/+227 |
| 2021-02-23 | Add more links between hash and btree collections | Joshua Nelson | -3/+4 |
| 2021-02-23 | Auto merge of #82430 - Dylan-DPC:rollup-nu4kfyc, r=Dylan-DPC | bors | -1/+1 |
| 2021-02-23 | Rollup merge of #81154 - dylni:improve-design-of-assert-len, r=KodrAus | Dylan DPC | -1/+1 |
| 2021-02-23 | Auto merge of #81937 - ssomers:btree_drainy_refactor_9b, r=Mark-Simulacrum | bors | -98/+67 |
| 2021-02-22 | Auto merge of #81362 - ssomers:btree_drainy_refactor_8, r=Mark-Simulacrum | bors | -146/+176 |
| 2021-02-21 | BTreeMap: correct tests for alternative choices of B | Stein Somers | -5/+6 |
| 2021-02-21 | Improve sift_down performance in BinaryHeap | Han Mertens | -2/+2 |
| 2021-02-21 | Rollup merge of #81706 - SkiFire13:document-binaryheap-unsafe, r=Mark-Simulacrum | Yuki Okushi | -49/+117 |
| 2021-02-21 | Rollup merge of #81300 - ssomers:btree_cleanup_leak_tests, r=Mark-Simulacrum | Yuki Okushi | -217/+337 |