| Age | Commit message (Expand) | Author | Lines |
| 2025-01-26 | Put all coretests in a separate crate | bjorn3 | -2688/+0 |
| 2024-11-25 | Support ranges in `<[T]>::get_many_mut()` | Chayim Refael Friedman | -1/+69 |
| 2024-09-30 | Port sort-research-rs test suite Rust stdlib tests | Lukas Bergdoll | -51/+0 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -1/+1 |
| 2024-07-30 | Rewrite binary search implementation | Amanieu d'Antras | -6/+6 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -0/+1 |
| 2024-06-20 | Auto merge of #124032 - Voultapher:a-new-sort, r=thomcc | bors | -24/+1 |
| 2024-05-16 | Fix tidy errors | Lukas Bergdoll | -1/+0 |
| 2024-05-16 | Replace sort implementations | Lukas Bergdoll | -24/+2 |
| 2024-05-15 | Rename `flatten(_mut)` → `as_flattened(_mut)` | Scott McMurray | -2/+2 |
| 2024-04-21 | Use it in the library, and `InstSimplify` it away in the easy places | Scott McMurray | -0/+13 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -2/+2 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -3/+3 |
| 2024-01-21 | Rollup merge of #118811 - EbbDrop:is-sorted-by-bool, r=Mark-Simulacrum | Nadrieril | -1/+1 |
| 2024-01-20 | Use bool instead of PartiolOrd in is_sorted_by | EbbDrop | -1/+1 |
| 2024-01-19 | Rollup merge of #117561 - tgross35:split-array, r=scottmcm | Matthias Krüger | -38/+14 |
| 2024-01-02 | Adjust library tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -3/+3 |
| 2023-12-10 | remove redundant imports | surechen | -1/+0 |
| 2023-11-29 | Remove `{,r}split_array_ref{,_mut}` methods from slices | Trevor Gross | -38/+14 |
| 2023-10-11 | Auto merge of #112818 - Benjamin-L:add-slice_split_once, r=cuviper | bors | -0/+20 |
| 2023-06-19 | Implement slice::split_once and slice::rsplit_once | Benjamin Lee | -0/+20 |
| 2023-06-16 | Add more comprehensive tests for is_sorted and friends | +merlan #flirora | -0/+28 |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -10/+11 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -10/+10 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -1/+1 |
| 2023-01-04 | Update rand in the stdlib tests, and remove the getrandom feature from it | Thom Chiovoloni | -5/+4 |
| 2022-11-20 | Add get_many_mut methods to slice | Marvin Löbel | -0/+60 |
| 2022-10-07 | make const_err a hard error | Ralf Jung | -1/+0 |
| 2022-08-03 | actually call assert_send_and_sync | Ralf Jung | -1/+2 |
| 2022-08-01 | Add back Send and Sync impls on ChunksMut iterators | Ben Kimock | -0/+21 |
| 2022-07-03 | Fix slice::ChunksMut aliasing | Ben Kimock | -0/+44 |
| 2022-05-18 | Stage-step cfgs | Mark Rousskov | -2/+0 |
| 2022-04-17 | Add slice::remainder | kadmin | -0/+12 |
| 2022-04-08 | add `<[[T; N]]>::flatten`, `<[[T; N]]>::flatten_mut`, and `Vec::<[T; N]>::int... | Cyborus04 | -0/+16 |
| 2022-03-26 | add #[must_use] to functions of slice and its iterators. | Jendrik | -4/+4 |
| 2022-03-03 | fix a warning when building core tests with cfg(miri) | Ralf Jung | -0/+2 |
| 2022-02-27 | add `slice::{from_ptr_range, from_mut_ptr_range}` | Ibraheem Ahmed | -0/+22 |
| 2022-02-01 | Auto merge of #86988 - thomcc:chunky-splitz-says-no-checking, r=the8472 | bors | -0/+102 |
| 2022-01-31 | Improve test coverage of {Chunks,RChunks,RChunksMut}::{next,next_back} | Thom Chiovoloni | -0/+102 |
| 2021-12-10 | Add rsplit_array variants to slices and arrays | Jethro Beekman | -0/+33 |
| 2021-12-01 | disable tests in Miri that take too long | Ralf Jung | -0/+2 |
| 2021-12-01 | Rollup merge of #88502 - ibraheemdev:slice-take, r=dtolnay | Matthias Krüger | -0/+109 |
| 2021-11-19 | Fix Iterator::advance_by contract inconsistency | The8472 | -0/+2 |
| 2021-11-12 | add slice take methods | Ibraheem Ahmed | -0/+109 |
| 2021-10-24 | Rollup merge of #90162 - WaffleLapkin:const_array_slice_from_ref_mut, r=oli-obk | Matthias Krüger | -0/+8 |
| 2021-10-23 | Add tests for `const_slice_from_ref` and `const_array_from_ref` | Maybe Waffle | -0/+8 |
| 2021-10-22 | Implement split_array and split_array_mut | Jethro Beekman | -0/+33 |
| 2021-10-11 | add slice::swap tests | Ibraheem Ahmed | -0/+39 |
| 2021-08-31 | Move to the top of file | Katherine Philip | -2/+1 |
| 2021-08-30 | Add test case for using `slice::fill` with MaybeUninit | Katherine Philip | -0/+9 |