| Age | Commit message (Expand) | Author | Lines |
| 2024-02-16 | address review comments | Lukas Markeffsky | -44/+99 |
| 2024-02-16 | outline large copies | Lukas Markeffsky | -7/+20 |
| 2024-02-16 | reduce branchiness | Lukas Markeffsky | -31/+22 |
| 2024-02-16 | reduce amount of math | Lukas Markeffsky | -14/+12 |
| 2024-02-16 | simplify codegen for trivially droppable types | Lukas Markeffsky | -2/+3 |
| 2024-02-15 | Fix typo in VecDeque::handle_capacity_increase() doc comment. | Johannes Lade | -4/+4 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -2/+2 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -11/+11 |
| 2024-01-02 | Adjust library tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -1/+1 |
| 2023-12-21 | fix minor mistake in comments describing VecDeque resizing | Kent Ross | -4/+4 |
| 2023-09-16 | edit `std::collections::VecDeque` docs | mxnkarou | -2/+2 |
| 2023-07-13 | Fix VecDeque's rotate_left and rotate_right panic tests | Pedro Lobo | -2/+2 |
| 2023-07-13 | Rename VecDeque's rotate_left and rotate_right parameters | Pedro Lobo | -23/+23 |
| 2023-04-28 | Make sure that signatures aren't accidental refinements | Michael Goulet | -1/+1 |
| 2023-04-26 | Spelling library/ | Josh Soref | -1/+1 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -2/+1 |
| 2023-03-30 | Rollup merge of #106985 - jofas:106746-fix, r=ChrisDenton | Yuki Okushi | -10/+10 |
| 2023-03-30 | removed deprecated markdown links from documentation | jofas | -3/+0 |
| 2023-03-29 | enhanced documentation of binary search methods for slice and VecDeque for un... | jofas | -7/+10 |
| 2023-03-27 | fix advance_by impl for vec_deque and add tests | The 8472 | -7/+7 |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -29/+39 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -32/+30 |
| 2023-03-11 | Rollup merge of #106276 - Sp00ph:unify_slice_ranges, r=the8472 | Matthias Krüger | -36/+31 |
| 2023-03-01 | Rollup merge of #108462 - pommicket:fix-vecdeque-zst-overflow, r=Amanieu | Dylan DPC | -1/+1 |
| 2023-02-26 | Disambiguate comments | Markus Everling | -2/+2 |
| 2023-02-26 | Fix `VecDeque::shrink_to` and add tests. | Markus Everling | -55/+104 |
| 2023-02-25 | Use checked_add in VecDeque::append for ZSTs to avoid overflow | pommicket | -1/+1 |
| 2023-02-20 | Changes according to review | Markus Everling | -11/+11 |
| 2023-02-18 | Auto merge of #106241 - Sp00ph:vec_deque_iter_methods, r=the8472 | bors | -1/+184 |
| 2023-02-05 | Add `slice_ranges` safety comment | Markus Everling | -5/+12 |
| 2023-01-31 | Fix `vec_deque::Drain` FIXME | Markus Everling | -31/+19 |
| 2023-01-25 | Set version placeholders to 1.68 | Mark Rousskov | -1/+1 |
| 2023-01-08 | Rollup merge of #106562 - clubby789:vec-deque-example, r=Mark-Simulacrum | Yuki Okushi | -1/+3 |
| 2023-01-07 | Rollup merge of #105128 - Sp00ph:vec_vec_deque_conversion, r=dtolnay | Matthias Krüger | -3/+3 |
| 2023-01-07 | Clarify examples for `VecDeque::get/get_mut` | clubby789 | -1/+3 |
| 2022-12-29 | Implement more methods for `vec_deque::IntoIter` | Markus Everling | -1/+184 |
| 2022-12-20 | Auto merge of #105127 - Sp00ph:const_new, r=dtolnay | bors | -3/+4 |
| 2022-12-15 | doc: Fix a few small issues | Hannes Körber | -1/+1 |
| 2022-12-08 | Apply review feedback; Fix no_global_oom_handling build | Scott McMurray | -0/+3 |
| 2022-12-08 | Make `VecDeque::from_iter` O(1) from `vec(_deque)::IntoIter` | Scott McMurray | -11/+71 |
| 2022-12-05 | Add O(1) `Vec -> VecDeque` conversion guarantee | Markus Everling | -3/+3 |
| 2022-12-05 | Auto merge of #105046 - scottmcm:vecdeque-vs-vec, r=Mark-Simulacrum | bors | -5/+12 |
| 2022-12-01 | Fix typo in comment | Markus Everling | -1/+1 |
| 2022-12-01 | Make `VecDeque::new` const | Markus Everling | -3/+4 |
| 2022-12-01 | Make `VecDeque::new_in` unstably const | Markus Everling | -2/+1 |
| 2022-11-29 | Send `VecDeque::from_iter` via `Vec::from_iter` | Scott McMurray | -5/+12 |
| 2022-11-26 | Add second test case in `make_contiguous_head_to_end` | Markus Everling | -10/+49 |
| 2022-11-26 | Improve slow path in `make_contiguous` | Markus Everling | -36/+76 |
| 2022-11-26 | Don't use `Take` in `SpecExtend` impl | Markus Everling | -21/+23 |
| 2022-11-25 | Changes according to code review | Markus Everling | -144/+181 |