Returns ith value of this list view array. Note: This method does not check for nulls and the value is arbitrary if [`is_null`](Self::is_null) returns true for the index. # Safety Caller must ensure that the index is within the array bounds
(&self, i: usize)
| 324 | /// # Safety |
| 325 | /// Caller must ensure that the index is within the array bounds |
| 326 | pub unsafe fn value_unchecked(&self, i: usize) -> ArrayRef { |
| 327 | let offset = unsafe { self.value_offsets().get_unchecked(i).as_usize() }; |
| 328 | let length = unsafe { self.value_sizes().get_unchecked(i).as_usize() }; |
| 329 | self.values.slice(offset, length) |
| 330 | } |
| 331 | |
| 332 | /// Returns ith value of this list view array. |
| 333 | /// |
nothing calls this directly
no test coverage detected