| Age | Commit message (Expand) | Author | Lines |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -2/+0 |
| 2022-09-23 | Added const Default impls for Arrays and Tuples. | onestacked | -1/+2 |
| 2022-09-21 | Auto merge of #100214 - scottmcm:strict-range, r=thomcc | bors | -31/+23 |
| 2022-09-19 | Optimize `array::IntoIter` | Scott McMurray | -31/+23 |
| 2022-09-10 | array docs - advertise how to get array from slice | Doug Cook (WINDOWS) | -0/+48 |
| 2022-08-22 | Move error trait into core | Jane Losare-Lusby | -0/+11 |
| 2022-08-20 | Improve primitive/std docs separation and headers | Cameron Steffen | -1/+1 |
| 2022-08-12 | Clarify `array:from_fn` documentation | zohnannor | -0/+4 |
| 2022-08-11 | more typos | Ralf Jung | -1/+1 |
| 2022-07-20 | fix typo | Ralf Jung | -1/+1 |
| 2022-07-20 | make raw_eq precondition more restrictive | Ralf Jung | -3/+4 |
| 2022-06-21 | Add `Iterator::next_chunk` | Ross MacArthur | -31/+48 |
| 2022-05-24 | Stabilize `{slice,array}::from_ref` | Maybe Waffle | -1/+1 |
| 2022-05-20 | Stabilize core::array::from_fn | Caio | -7/+5 |
| 2022-05-14 | Auto merge of #95602 - scottmcm:faster-array-intoiter-fold, r=the8472 | bors | -1/+15 |
| 2022-04-14 | Remove use of `#[rustc_deprecated]` | Jacob Pratt | -1/+1 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -1/+0 |
| 2022-04-02 | Fix `array::IntoIter::fold` to use the optimized `Range::fold` | Scott McMurray | -1/+15 |
| 2022-03-30 | remove now unnecessary lang items | lcnr | -1/+1 |
| 2022-03-10 | Rollup merge of #94657 - fee1-dead:const_slice_index, r=oli-obk | Matthias Krüger | -4/+6 |
| 2022-03-06 | Constify slice index for strings | Deadbeef | -4/+6 |
| 2022-02-23 | Fix a typo in documentation of `array::IntoIter::new_unchecked` | Waffle Maybe | -1/+1 |
| 2022-02-03 | Add missing const stability attributes | Jacob Pratt | -0/+1 |
| 2021-12-23 | Switch all libraries to the 2021 edition | Deadbeef | -2/+0 |
| 2021-12-14 | Do array-slice equality via arrays, rather than always via slices | Scott McMurray | -12/+29 |
| 2021-12-14 | Auto merge of #91766 - scottmcm:more-array-raw-eq, r=yaahc | bors | -5/+49 |
| 2021-12-13 | Rollup merge of #91086 - rhysd:issue-91085, r=m-ou-se | Matthias Krüger | -0/+12 |
| 2021-12-11 | Rollup merge of #90270 - woppopo:const_borrow_trait, r=dtolnay | Matthias Krüger | -2/+4 |
| 2021-12-10 | Allow `memcmp` for more array comparisons | Scott McMurray | -5/+49 |
| 2021-12-10 | Add rsplit_array variants to slices and arrays | Jethro Beekman | -0/+78 |
| 2021-12-08 | Auto merge of #91512 - scottmcm:array-intoiter-advance, r=Mark-Simulacrum | bors | -1/+43 |
| 2021-12-06 | s/from_raw_parts/new_unchecked/ | Scott McMurray | -3/+3 |
| 2021-12-06 | Add tracking issue; make `empty` const too (unstably) | Scott McMurray | -4/+5 |
| 2021-12-06 | Move the doc test to edition2021 | Scott McMurray | -6/+5 |
| 2021-12-06 | Add `array::IntoIter::{empty, from_raw_parts}` | Scott McMurray | -0/+129 |
| 2021-12-04 | Update array::IntoIter::new deprecation version. | Mara Bos | -1/+1 |
| 2021-12-04 | Swap body of array::IntoIter::new and IntoIterator::new. | Mara Bos | -28/+28 |
| 2021-12-04 | Deprecate array::IntoIter::new. | Mara Bos | -20/+1 |
| 2021-12-04 | Update stabilization version of try_from_mut_slice_to_array | Mara Bos | -1/+1 |
| 2021-12-04 | Make `Borrow` and `BorrowMut` impls `const` | woppopo | -2/+4 |
| 2021-12-03 | Override `Iterator::advance(_back)_by` for `array::IntoIter` | Scott McMurray | -1/+43 |
| 2021-12-02 | Make array::{try_from_fn, try_map} and Iterator::try_find generic over Try | Scott McMurray | -32/+84 |
| 2021-11-30 | Apply cfg-bootstrap switch | Mark Rousskov | -5/+0 |
| 2021-11-21 | Reborrow mut slice instead of converting it with `as_ref` | Linda_pp | -1/+1 |
| 2021-11-20 | Update version in `stable` attribute | Linda_pp | -1/+1 |
| 2021-11-20 | Implement `TryFrom<&'_ mut [T]>` for `[T; N]` | rhysd | -0/+12 |
| 2021-11-10 | Moar #[inline] | Scott McMurray | -0/+2 |
| 2021-11-09 | Specialize array cloning for Copy types | Scott McMurray | -3/+22 |
| 2021-11-08 | Attempt to address perf regressions with #[inline] | bstrie | -2/+4 |
| 2021-11-08 | impl Copy/Clone for arrays in std, not in compiler | bstrie | -0/+18 |