Josh Stone a2cfc74c5f Simplify array::IntoIter
- Initialization can use `transmute_copy` to do the bitwise copy.
- `as_slice` can use `get_unchecked` and `MaybeUninit::slice_get_ref`,
  and `as_mut_slice` can do similar.
- `next` and `next_back` can use the corresponding `Range` methods.
- `Clone` doesn't need any unsafety, and we can dynamically update the
  new range to get partial drops if `T::clone` panics.
2020-08-07 13:51:46 -07:00
..
2020-08-04 19:24:08 +02:00
2020-08-07 13:51:46 -07:00
2020-08-03 04:17:45 -07:00
2020-08-01 07:49:24 +02:00
2020-08-04 00:01:48 +02:00
2020-07-29 15:45:42 +02:00
2020-07-28 06:14:52 +02:00
2020-07-30 12:30:58 -07:00