(&self, logical_index: usize)
| 769 | } |
| 770 | |
| 771 | unsafe fn value_unchecked(&self, logical_index: usize) -> Self::Item { |
| 772 | let physical_index = self.run_array.get_physical_index(logical_index); |
| 773 | unsafe { self.values().value_unchecked(physical_index) } |
| 774 | } |
| 775 | } |
| 776 | |
| 777 | impl<'a, R, V> IntoIterator for TypedRunArray<'a, R, V> |
no test coverage detected