Deconstruct this array into its constituent parts
(self)
| 562 | |
| 563 | /// Deconstruct this array into its constituent parts |
| 564 | pub fn into_parts(self) -> (BooleanBuffer, Option<NullBuffer>) { |
| 565 | (self.values, self.nulls) |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | /// SAFETY: Correctly implements the contract of Arrow Arrays |
no outgoing calls