(&mut self, index: I)
| 166 | impl<A: Array, I: SliceIndex<[A::Item]>> IndexMut<I> for TinyVec<A> { |
| 167 | #[inline(always)] |
| 168 | fn index_mut(&mut self, index: I) -> &mut Self::Output { |
| 169 | &mut self.deref_mut()[index] |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | #[cfg(feature = "std")] |