(&self, i: usize)
| 230 | /// Returns the length for value at index `i`. |
| 231 | #[inline] |
| 232 | pub fn value_length(&self, i: usize) -> i32 { |
| 233 | let offsets = self.value_offsets(); |
| 234 | offsets[i + 1] - offsets[i] |
| 235 | } |
| 236 | |
| 237 | /// Returns a zero-copy slice of this array with the indicated offset and length. |
| 238 | pub fn slice(&self, offset: usize, length: usize) -> Self { |