(self)
| 1611 | type IntoIter = ArrayVecIterator<A>; |
| 1612 | #[inline(always)] |
| 1613 | fn into_iter(self) -> Self::IntoIter { |
| 1614 | ArrayVecIterator { base: 0, tail: self.len, data: self.data } |
| 1615 | } |
| 1616 | } |
| 1617 | |
| 1618 | impl<'a, A: Array> IntoIterator for &'a mut ArrayVec<A> { |