| Age | Commit message (Expand) | Author | Lines |
| 2021-09-05 | Auto merge of #88469 - patrick-gu:master, r=dtolnay | bors | -1/+1 |
| 2021-09-03 | Remove excessive linking | patrick-gu | -3/+3 |
| 2021-09-03 | Update outdated docs of array::IntoIter::new. | Mara Bos | -2/+7 |
| 2021-08-30 | use `unwrap_unchecked` where possible | ibraheemdev | -5/+2 |
| 2021-08-29 | Add links in docs for some primitive types | patrick-gu | -4/+4 |
| 2021-08-22 | Fix more “a”/“an” typos | Frank Steffahn | -1/+1 |
| 2021-08-17 | Constified `Default` implementations | Deadbeef | -1/+2 |
| 2021-08-01 | bump bootstrap compiler to 1.55 | Pietro Albini | -5/+0 |
| 2021-07-30 | Add docs about performance and `Iterator::map` to `[T; N]::map` | Lukas Kalbertodt | -0/+22 |
| 2021-07-27 | from review: add a comment why try_fold was chosen instead of fold | The8472 | -0/+5 |
| 2021-07-24 | implement fold() on array::IntoIter to improve flatten().collect() perf | The8472 | -0/+16 |
| 2021-07-21 | Remove unsound TrustedRandomAccess implementations | Frank Steffahn | -25/+1 |
| 2021-07-15 | Stabilize `[T; N]::map()` | inquisitivecrystal | -3/+2 |
| 2021-07-08 | Stop generating `alloca`s+`memcmp` for simple array equality | Scott McMurray | -2/+51 |
| 2021-07-08 | Move the `PartialEq` and `Eq` impls for arrays to a separate file | Scott McMurray | -112/+112 |
| 2021-06-24 | Use `hash_one` to simplify some other doctests | Scott McMurray | -8/+3 |
| 2021-06-16 | Add doc(hidden) to all __iterator_get_unchecked | Jacob Hoffman-Andrews | -0/+1 |
| 2021-06-17 | Rollup merge of #86140 - scottmcm:array-hash-facepalm, r=kennytm | Yuki Okushi | -0/+17 |
| 2021-06-08 | Mention the Borrow guarantee on the Hash implementations for Array and Vec | Scott McMurray | -0/+17 |
| 2021-06-02 | Replace IntoIter::new with IntoIterator::into_iter in std | Muhammad Mominul Huque | -2/+2 |
| 2021-05-26 | Fix typo in core::array::IntoIter comment | BlackHoleFox | -1/+1 |
| 2021-05-24 | remove cfg(bootstrap) | Pietro Albini | -1/+0 |
| 2021-05-23 | Update std::array module doc header | bstrie | -3/+1 |
| 2021-04-25 | Auto merge of #84147 - cuviper:array-method-dispatch, r=nikomatsakis,m-ou-se | bors | -0/+22 |
| 2021-04-25 | Rollup merge of #84105 - WaffleLapkin:stabilize_array_from_ref, r=m-ou-se | Yuki Okushi | -2/+2 |
| 2021-04-16 | Document the edition behavior for array.into_iter() | Josh Stone | -0/+8 |
| 2021-04-16 | Skip into_iter() for arrays before 2021 | Josh Stone | -0/+4 |
| 2021-04-16 | Add `IntoIterator` impl `for [T; N]` (arrays by value) | Lukas Kalbertodt | -0/+10 |
| 2021-04-11 | stabilize core::array::{from_ref,from_mut} | Waffle | -2/+2 |
| 2021-04-11 | Remove FixedSizeArray | Tomasz Miąsko | -36/+0 |
| 2021-03-26 | Use iter::zip in library/ | Josh Stone | -2/+2 |
| 2021-03-21 | implement TrustedRandomAccess for array::IntoIter | The8472 | -1/+24 |
| 2021-03-08 | Update library/core/src/array/mod.rs | Arnav Jindal | -1/+1 |
| 2021-03-08 | Grammar Fixes | Arnav Jindal | -4/+4 |
| 2021-02-25 | Convert primitives to use intra-doc links | Joshua Nelson | -3/+1 |
| 2021-02-15 | Add internal `collect_into_array[_unchecked]` to remove duplicate code | Lukas Kalbertodt | -60/+110 |
| 2021-01-31 | Rollup merge of #80470 - SimonSapin:array-intoiter-type, r=m-ou-se | Jonas Schievink | -8/+19 |
| 2021-01-21 | Add example to array::IntoIter::new’s doc-comment | Simon Sapin | -0/+10 |
| 2021-01-11 | Add `[T; N]::each_ref` and `[T; N]::each_mut` | Lukas Kalbertodt | -3/+72 |
| 2020-12-29 | Stabilize by-value `[T; N]` iterator `core::array::IntoIter` | Simon Sapin | -8/+9 |
| 2020-12-17 | Added reference to tracking issue | Albin Hedman | -1/+1 |
| 2020-12-16 | Update doc comment | Albin Hedman | -2/+5 |
| 2020-12-16 | Update zip for better codegen, see discussion | Albin Hedman | -2/+2 |
| 2020-11-26 | Added [T; N]::zip() | Albin Hedman | -0/+28 |
| 2020-11-19 | Make as{_mut,}_slice on array::IntoIter public | est31 | -2/+4 |
| 2020-11-16 | Rollup merge of #78769 - est31:remove_lifetimes, r=KodrAus | Mara Bos | -8/+8 |
| 2020-11-16 | Implement Index[Mut] for arrays | pubfnbar | -0/+25 |
| 2020-11-05 | Remove unneeded lifetimes in array/mod.rs | est31 | -8/+8 |
| 2020-11-05 | Rollup merge of #78716 - est31:array_traits, r=Dylan-DPC | Mara Bos | -2/+3 |
| 2020-11-04 | Fix outdated comment next to array_impl_default | est31 | -2/+3 |