(&self, index: I)
| 159 | type Output = <I as SliceIndex<[A::Item]>>::Output; |
| 160 | #[inline(always)] |
| 161 | fn index(&self, index: I) -> &Self::Output { |
| 162 | &self.deref()[index] |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | impl<A: Array, I: SliceIndex<[A::Item]>> IndexMut<I> for TinyVec<A> { |