(&self, index: I)
| 171 | type Output = <I as SliceIndex<[A::Item]>>::Output; |
| 172 | #[inline(always)] |
| 173 | fn index(&self, index: I) -> &Self::Output { |
| 174 | &self.deref()[index] |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | impl<A: Array, I: SliceIndex<[A::Item]>> IndexMut<I> for ArrayVec<A> { |