| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2022-01-09 | eplace usages of vec![].into_iter with [].into_iter | Lucas Kent | -8/+8 |
| 2021-11-19 | Fix Iterator::advance_by contract inconsistency | The8472 | -0/+3 |
| 2021-09-30 | implement advance_(back_)_by on more iterators | The8472 | -0/+18 |
| 2021-08-07 | Use assert_matches! instead of if let {} else | Kornel | -113/+103 |
| 2021-07-24 | Hide allocator details from TryReserveError | Kornel | -33/+76 |
| 2021-06-18 | Lint for unused borrows as part of UNUSED_MUST_USE | hi-rustin | -5/+5 |
| 2021-06-02 | Update expressions where we can use array's IntoIterator implementation | Muhammad Mominul Huque | -5/+5 |
| 2021-05-24 | Make Vec::dedup panicking test actually detect double panics | Giacomo Stevanato | -23/+25 |
| 2021-05-19 | from review: more robust test | the8472 | -2/+2 |
| 2021-05-19 | add regression test | The8472 | -0/+12 |
| 2021-05-19 | remove InPlaceIterable marker from Peekable due to unsoundness | The8472 | -1/+0 |
| 2021-04-04 | Rollup merge of #83827 - the8472:fix-inplace-panic-on-drop, r=RalfJung | Dylan DPC | -1/+10 |
| 2021-04-04 | Rollup merge of #81619 - SkiFire13:resultshunt-inplace, r=the8472 | Dylan DPC | -2/+2 |
| 2021-04-04 | suggestion from review | the8472 | -1/+1 |
| 2021-04-04 | cleanup leak after test to make miri happy | The8472 | -1/+10 |
| 2021-03-29 | add testcase for double-drop during Vec in-place collection | The8472 | -1/+37 |
| 2021-03-16 | Vec::dedup optimization - add benches | Soveu | -1/+1 |
| 2021-03-15 | Merge branch 'master' into dedup | Soveu | -0/+45 |
| 2021-03-15 | Vec::dedup optimization - add test for panic | Soveu | -0/+54 |
| 2021-03-15 | Vec::dedup optimization - add tests | Soveu | -0/+73 |
| 2021-03-04 | Add regression test for `Vec::extend_from_within` leak | Waffle | -0/+42 |
| 2021-03-03 | Add test that Vec::spare_capacity_mut doesn't invalidate pointers | Waffle | -0/+4 |
| 2021-02-13 | Added tests to drain an empty vec | Hanif Bin Ariffin | -0/+11 |
| 2021-02-11 | Auto merge of #81126 - oxalica:retain-early-drop, r=m-ou-se | bors | -0/+61 |
| 2021-02-03 | Update test to collect item with a different type than the original vec | Giacomo Stevanato | -1/+1 |
| 2021-02-01 | Move test | Giacomo Stevanato | -2/+2 |
| 2021-01-31 | add `Vec::extend_from_within` method | Waffle | -0/+70 |