| Age | Commit message (Expand) | Author | Lines |
| 2023-01-10 | mv binary_heap.rs binary_heap/mod.rs | Alan Egerton | -1721/+0 |
| 2022-08-10 | Guarantee `try_reserve` preserves the contents on error | YOSHIOKA Takuma | -1/+2 |
| 2022-06-19 | Fix documentation for with_capacity and reserve families of methods | jmaargh | -22/+29 |
| 2022-06-16 | std: Stabilize feature try_reserve_2 | Xuanwo | -4/+2 |
| 2022-05-23 | Put a bound on collection misbehavior | Christopher Durham | -3/+4 |
| 2022-05-02 | Rollup merge of #94126 - ssomers:alloc_prep_1, r=Mark-Simulacrum | Yuki Okushi | -0/+3 |
| 2022-03-22 | rename internal helper trait AsIntoIter to AsVecIntoIter | The 8472 | -2/+2 |
| 2022-03-21 | add module-level documentation for vec's in-place iteration | The8472 | -0/+2 |
| 2022-03-21 | move AsIntoIter helper trait and mark it as unsafe | The8472 | -1/+1 |
| 2022-03-11 | Classify BinaryHeap & LinkedList unit tests as such | Stein Somers | -0/+3 |
| 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 | -5/+5 |
| 2022-02-19 | Collections: improve the documentation of drain members | Stein Somers | -5/+11 |
| 2022-01-18 | Replace iterator-based construction of collections by `Into<T>` | Júnior Bassani | -18/+15 |
| 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-04 | Use IntoIterator for array impl everywhere. | Mara Bos | -1/+1 |
| 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 | -0/+2 |
| 2021-10-30 | Add #[must_use] to len and is_empty | John Kugelman | -0/+2 |
| 2021-10-31 | Rollup merge of #89899 - jkugelman:must-use-alloc, r=joshtriplett | Matthias Krüger | -1/+5 |
| 2021-10-21 | Clarify undefined behaviour for binary heap, btree and hashset | Wilfred Hughes | -3/+3 |
| 2021-10-15 | Add #[must_use] to remaining alloc functions | John Kugelman | -1/+5 |
| 2021-10-12 | Rollup merge of #89778 - jkugelman:must-use-as_type-conversions, r=joshtriplett | the8472 | -0/+1 |
| 2021-10-11 | Add #[must_use] to as_type conversions | John Kugelman | -0/+1 |
| 2021-10-11 | Rollup merge of #89726 - jkugelman:must-use-alloc-constructors, r=joshtriplett | Guillaume Gomez | -0/+2 |
| 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/+2 |
| 2021-09-25 | Rollup merge of #89216 - r00ster91:bigo, r=dtolnay | Manish Goregaokar | -4/+4 |
| 2021-09-24 | consistent big O notation | r00ster91 | -4/+4 |
| 2021-09-16 | Add IntoIterator intra doc link to various collections | est31 | -1/+2 |
| 2021-09-16 | Add intra-doc-links to BinaryHeap rustdoc | est31 | -3/+7 |
| 2021-08-22 | Fix typos “an”→“a” and a few different ones that appeared in the sa... | Frank Steffahn | -1/+1 |
| 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 | -0/+24 |
| 2021-07-24 | Update std_collections_from_array stability version | bstrie | -1/+1 |
| 2021-07-06 | Stabilize Vec<T>::shrink_to | Yoh Deadfall | -2/+1 |
| 2021-06-30 | impl From<[(K, V); N]> for std::collections | bstrie | -0/+24 |
| 2021-06-30 | Remove "length" doc aliases | Amanieu d'Antras | -1/+0 |
| 2021-05-16 | mark internal inplace_iteration traits as hidden | The8472 | -0/+2 |
| 2021-04-22 | Improve BinaryHeap::retain. | Mara Bos | -32/+53 |
| 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-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-01 | Add diagnostic items | Cameron Steffen | -0/+1 |
| 2021-02-21 | Improve sift_down performance in BinaryHeap | Han Mertens | -2/+2 |
| 2021-02-20 | Add FIXME for safety comments that are invalid when T is a ZST | Giacomo Stevanato | -0/+4 |