(&self, i: usize)
| 257 | /// Panics if index `i` is out of bounds. |
| 258 | #[inline] |
| 259 | pub fn value_length(&self, i: usize) -> T::Offset { |
| 260 | let offsets = self.value_offsets(); |
| 261 | offsets[i + 1] - offsets[i] |
| 262 | } |
| 263 | |
| 264 | /// Returns a reference to the offsets of this array |
| 265 | /// |
nothing calls this directly
no test coverage detected