| Age | Commit message (Expand) | Author | Lines |
| 2024-03-01 | try_with_capacity for Vec, VecDeque, String | Kornel | -0/+12 |
| 2024-02-21 | rename ptr::invalid -> ptr::without_provenance | Ralf Jung | -1/+1 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -3/+3 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -4/+4 |
| 2024-01-26 | Rollup merge of #119917 - Zalathar:split-off, r=cuviper | Matthias Krüger | -6/+18 |
| 2024-01-21 | Auto merge of #85528 - the8472:iter-markers, r=dtolnay | bors | -2/+6 |
| 2024-01-13 | Remove special-case handling of `vec.split_off(0)` | Zalathar | -6/+18 |
| 2024-01-11 | apply fmt | klensy | -7/+3 |
| 2024-01-10 | Implement in-place iteratation markers for iter::{Copied, Cloned} | The8472 | -2/+6 |
| 2024-01-02 | Adjust library tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -3/+3 |
| 2023-12-11 | Auto merge of #117758 - Urgau:lint_pointer_trait_comparisons, r=davidtwco | bors | -1/+1 |
| 2023-12-10 | remove redundant imports | surechen | -2/+0 |
| 2023-12-06 | Adjust tests for newly added ambiguous_wide_pointer_comparisons lint | Urgau | -1/+1 |
| 2023-12-05 | Fix in-place collect not reallocating when necessary | The 8472 | -0/+8 |
| 2023-11-28 | Auto merge of #110353 - the8472:in-place-flatten-chunks, r=cuviper | bors | -2/+43 |
| 2023-09-28 | Auto merge of #111278 - EFanZh:implement-from-array-refs-for-vec, r=dtolnay | bors | -0/+10 |
| 2023-09-03 | support in-place collecting additional FlatMap shapes | The 8472 | -0/+11 |
| 2023-09-03 | Expand in-place iteration specialization to Flatten, FlatMap and ArrayChunks | The 8472 | -2/+32 |
| 2023-08-23 | Bump cfg(bootstrap) | Mark Rousskov | -1/+0 |
| 2023-07-16 | Implement `From<{&,&mut} [T; N]>` for `Vec<T>` | EFanZh | -0/+10 |
| 2023-07-14 | Auto merge of #113113 - Amanieu:box-vec-zst, r=Mark-Simulacrum | bors | -0/+65 |
| 2023-07-13 | Eliminate ZST allocations in `Box` and `Vec` | Amanieu d'Antras | -0/+65 |
| 2023-07-03 | enable test_join test in Miri | Ralf Jung | -0/+1 |
| 2023-06-14 | s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedList | The 8472 | -22/+22 |
| 2023-06-14 | remove drain-on-drop behavior from vec::DrainFilter and add #[must_use] | The 8472 | -30/+1 |
| 2023-06-13 | ignore core, alloc and test tests that require unwinding on panic=abort | Pietro Albini | -0/+11 |
| 2023-04-26 | Spelling library/ | Josh Soref | -1/+1 |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -9/+10 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -10/+11 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -1/+1 |
| 2022-12-24 | add lib tests for vec::IntoIter alignment issues | Ralf Jung | -2/+27 |
| 2022-11-23 | Add `#![deny(unsafe_op_in_unsafe_fn)]` in liballoc tests | Thom Chiovoloni | -1/+2 |
| 2022-10-04 | Rollup merge of #101642 - SkiFire13:fix-inplace-collection-leak, r=the8472 | Dylan DPC | -30/+35 |
| 2022-09-10 | Update test | Giacomo Stevanato | -33/+34 |
| 2022-09-10 | Adapt inplace collection leak test to check for no leaks | Giacomo Stevanato | -16/+20 |
| 2022-08-31 | fix into_iter on ZST | Ralf Jung | -0/+6 |
| 2022-08-30 | Rollup merge of #95376 - WaffleLapkin:drain_keep_rest, r=dtolnay | Dylan DPC | -0/+59 |
| 2022-08-22 | Rollup merge of #99386 - AngelicosPhosphoros:add_retain_test_maybeuninit, r=J... | Dylan DPC | -0/+45 |
| 2022-07-27 | Auto merge of #98553 - the8472:next_chunk_opt, r=Mark-Simulacrum | bors | -0/+10 |
| 2022-07-26 | add test for vec::IntoIter::next_chunk() impl | The 8472 | -0/+10 |
| 2022-07-17 | Add tests that check `Vec::retain` predicate execution order. | AngelicosPhosphoros | -0/+45 |
| 2022-07-10 | Auto merge of #95295 - CAD97:layout-isize, r=scottmcm | bors | -114/+52 |
| 2022-06-19 | Fix documentation for with_capacity and reserve families of methods | jmaargh | -0/+9 |
| 2022-06-05 | Add vec::Drain{,Filter}::keep_rest | Maybe Waffle | -0/+59 |
| 2022-05-29 | Use Box::new() instead of box syntax in alloc tests | est31 | -5/+5 |
| 2022-04-08 | add `<[[T; N]]>::flatten`, `<[[T; N]]>::flatten_mut`, and `Vec::<[T; N]>::int... | Cyborus04 | -0/+7 |
| 2022-03-25 | Add another assertion without into_iter | Jörn Horstmann | -2/+6 |
| 2022-03-25 | Add a test verifying the number of drop calls | Jörn Horstmann | -0/+24 |
| 2022-03-25 | Adjust tests for isize::MAX allocation always being checked | CAD97 | -114/+52 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -3/+3 |