| Age | Commit message (Expand) | Author | Lines |
| 2024-10-14 | replace placeholder version | Josh Stone | -1/+1 |
| 2024-10-12 | Stabilize `const_option` | Trevor Gross | -1/+0 |
| 2024-10-09 | stabilize `{slice,array}::from_mut` | ultrabear | -1/+2 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -1/+1 |
| 2024-08-31 | Fixed more typos in library/core | ranger-ross | -1/+1 |
| 2024-08-09 | fix: Ensure `Guard`'s `drop` method is removed at `opt-level=s` for `Copy` types | burlinchen | -0/+1 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -9/+5 |
| 2024-07-26 | Fix doc nits | John Arundel | -4/+6 |
| 2024-06-24 | Replace `MaybeUninit::uninit_array()` with array repeat expression. | Kevin Reid | -6/+6 |
| 2024-06-19 | core: add tracking issue for `array::repeat` | joboet | -1/+1 |
| 2024-06-19 | core: simplify implementation of `array::repeat`, address other nits | joboet | -18/+9 |
| 2024-06-19 | core: implement `array::repeat` | joboet | -0/+36 |
| 2024-06-11 | Simplify `[T; N]::try_map` signature | Jubilee Young | -4/+2 |
| 2024-05-20 | Implement BOXED_SLICE_INTO_ITER | Michael Goulet | -1/+1 |
| 2024-04-22 | Stabilize generic `NonZero`. | Markus Reiter | -1/+4 |
| 2024-03-25 | Import the 2021 prelude in the core crate | Daniel Paoliello | -2/+1 |
| 2024-03-06 | add missing PartialOrd impl doc for array | Konrad Höffner | -0/+1 |
| 2024-02-22 | Use generic `NonZero` everywhere in `core`. | Markus Reiter | -5/+5 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -2/+2 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -5/+5 |
| 2024-02-08 | Bump version placeholders | Mark Rousskov | -2/+2 |
| 2024-02-05 | Rollup merge of #120384 - wackbyte:array-equality-generics, r=Mark-Simulacrum | Matthias Krüger | -32/+32 |
| 2024-01-26 | Rollup merge of #103522 - Dylan-DPC:76118/array-methods-stab, r=dtolnay | Matthias Krüger | -7/+2 |
| 2024-01-26 | Use `<T, U>` for array/slice equality `impl`s | wackbyte | -32/+32 |
| 2024-01-19 | Rollup merge of #117561 - tgross35:split-array, r=scottmcm | Matthias Krüger | -4/+4 |
| 2023-12-10 | remove redundant imports | surechen | -1/+1 |
| 2023-11-29 | Remove `{,r}split_array_ref{,_mut}` methods from slices | Trevor Gross | -4/+4 |
| 2023-11-17 | Rollup merge of #117549 - DaniPopes:more-copied, r=b-naber | Matthias Krüger | -1/+1 |
| 2023-11-03 | library: use `copied` instead of manual `map` | DaniPopes | -1/+1 |
| 2023-11-02 | Add insta-stable std::hash::{DefaultHasher, RandomState} exports | ltdk | -1/+1 |
| 2023-10-15 | Auto merge of #115515 - the8472:zip-for-arrays, r=scottmcm | bors | -1/+26 |
| 2023-10-06 | optimize zipping over array iterators | The 8472 | -1/+26 |
| 2023-10-05 | Add more diagnostic items for clippy | Jason Newcomb | -0/+1 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -1/+1 |
| 2023-05-30 | Remove array_zip | Jubilee Young | -23/+0 |
| 2023-05-27 | Auto merge of #112016 - GuillaumeGomez:rollup-fhqn4i6, r=GuillaumeGomez | bors | -0/+4 |
| 2023-05-25 | Add #[inline] to array TryFrom impls | Ben Kimock | -0/+4 |
| 2023-05-24 | Stabilize `BuildHasher::hash_one` | Scott McMurray | -1/+0 |
| 2023-05-04 | Add an example that depends on `is_ascii` in a `const` | Scott McMurray | -0/+13 |
| 2023-05-04 | Constify `[u8]::is_ascii` (unstably) | Scott McMurray | -1/+1 |
| 2023-05-03 | Add the basic `ascii::Char` type | Scott McMurray | -0/+35 |
| 2023-04-28 | Make sure that signatures aren't accidental refinements | Michael Goulet | -2/+2 |
| 2023-04-22 | Add `intrinsics::transmute_unchecked` | Scott McMurray | -12/+6 |
| 2023-04-16 | rm const traits in libcore | Deadbeef | -16/+9 |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -4/+5 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -8/+6 |
| 2023-03-01 | Merge two different equality specialization traits in `core` | Scott McMurray | -67/+6 |
| 2023-02-13 | Auto merge of #107634 - scottmcm:array-drain, r=thomcc | bors | -127/+205 |
| 2023-02-10 | Remove a couple of `#[doc(hidden)] pub fn` and their `#[feature]` gates | Tobias Bucher | -15/+2 |
| 2023-02-04 | Allow canonicalizing the `array::map` loop in trusted cases | Scott McMurray | -127/+130 |