| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-07-27 | mv std libs to library/ | mark | -236/+0 | |
| 2020-07-05 | Remove the usage of the LengthAtMost32 trait | Roman Proskuryakov | -35/+10 | |
| 2020-03-31 | fix internal lint fallout | Bastian Kauschke | -9/+9 | |
| 2019-12-22 | Format the world | Mark Rousskov | -38/+16 | |
| 2019-11-18 | Use `drop_in_place` in `array::IntoIter::drop` | Simon Sapin | -4/+18 | |
| This skips the loop when the element type is known not to have drop glue, even in debug mode. | ||||
| 2019-11-06 | The unsafety in `iter.rs` is already documented wonderfully | Oliver Scherer | -5/+8 | |
| 2019-10-25 | Fill tracking issue number for `array_value_iter` and fix Rust version | Lukas Kalbertodt | -10/+10 | |
| 2019-10-24 | Add `array::IntoIter` as a consuming/by-value array iterator | Lukas Kalbertodt | -0/+266 | |
| The iterator is implemented using const generics. It implements the traits `Iterator`, `DoubleEndedIterator`, `ExactSizeIterator`, `FusedIterator` and `TrustedLen`. It also contains a public method `new` to create it from an array. `IntoIterator` was not implemented for arrays yet, as there are still some open questions regarding backwards compatibility. This commit only adds the iterator impl and does not yet offer a convenient way to obtain that iterator. | ||||
