Deconstruct this array into its constituent parts
(self)
| 249 | |
| 250 | /// Deconstruct this array into its constituent parts |
| 251 | pub fn into_parts(self) -> (OffsetBuffer<T::Offset>, Buffer, Option<NullBuffer>) { |
| 252 | (self.value_offsets, self.value_data, self.nulls) |
| 253 | } |
| 254 | |
| 255 | /// Returns the length for value at index `i`. |
| 256 | /// # Panics |