Deconstruct this array into its constituent parts
(self)
| 683 | |
| 684 | /// Deconstruct this array into its constituent parts |
| 685 | pub fn into_parts(self) -> (DataType, ScalarBuffer<T::Native>, Option<NullBuffer>) { |
| 686 | (self.data_type, self.values, self.nulls) |
| 687 | } |
| 688 | |
| 689 | /// Overrides the [`DataType`] of this [`PrimitiveArray`] |
| 690 | /// |