| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2021-01-24 | Simplify and fix tests | oxalica | -51/+40 |
| 2021-01-18 | Optimize Vec::retain | oxalica | -0/+72 |
| 2020-11-26 | Fix new 'unnecessary trailing semicolon' warnings | Aaron Hill | -3/+3 |
| 2020-10-17 | Move vec swap test | Alexis Bourget | -1/+13 |
| 2020-10-17 | Move vec-macro-repeat test | Alexis Bourget | -0/+13 |
| 2020-10-17 | Move zero-sized-vec-push test | Alexis Bourget | -0/+17 |
| 2020-10-07 | Auto merge of #74194 - mbrubeck:slice-eq, r=sfackler | bors | -1/+2 |
| 2020-09-21 | Move vec-cycle-wrapped test | Alexis Bourget | -0/+41 |
| 2020-09-21 | Move vec-cycle test | Alexis Bourget | -0/+39 |
| 2020-09-19 | Use `T::BITS` instead of `size_of::<T> * 8`. | Mara Bos | -1/+1 |
| 2020-09-16 | Rollup merge of #76662 - RalfJung:lib-test-miri, r=Mark-Simulacrum | Ralf Jung | -1/+1 |
| 2020-09-16 | Rollup merge of #75146 - tmiasko:range-overflow, r=Mark-Simulacrum | Dylan DPC | -0/+25 |
| 2020-09-15 | fix slice::check_range aliasing problems | Ralf Jung | -1/+1 |
| 2020-09-15 | reduce size of test_from_iter_specialization_with_iterator_adapters test in Miri | Ralf Jung | -1/+1 |
| 2020-09-15 | Auto merge of #76682 - richkadel:vec-take, r=Mark-Simulacrum | bors | -0/+14 |
| 2020-09-13 | Optimize behavior of vec.split_off(0) (take all) | Rich Kadel | -0/+14 |
| 2020-09-13 | note that test_stable_pointers does not reflect a stable guarantee | Ralf Jung | -0/+3 |
| 2020-09-07 | Rollup merge of #76324 - ayushmishra2005:move_vec_tests_in_library, r=matklad | Dylan DPC | -0/+23 |
| 2020-09-07 | Rollup merge of #76273 - CraftSpider:master, r=matklad | Dylan DPC | -0/+56 |
| 2020-09-04 | Move Vec slice UI tests in library | Ayush Kumar Mishra | -0/+23 |
| 2020-09-04 | Add tests for overflow in Vec::drain | Tomasz Miąsko | -0/+25 |
| 2020-09-03 | Remove vec-to_str.rs, merge the remaining test in with vec | Rune Tynan | -0/+3 |
| 2020-09-03 | remove empty Vec extend optimization | The8472 | -10/+0 |
| 2020-09-03 | support in-place collect for MapWhile adapters | The8472 | -0/+1 |
| 2020-09-03 | generalize in-place collect to types of same size and alignment | The8472 | -2/+3 |