Deconstruct this array into its constituent parts
(self)
| 349 | |
| 350 | /// Deconstruct this array into its constituent parts |
| 351 | pub fn into_parts(self) -> (PrimitiveArray<K>, ArrayRef) { |
| 352 | (self.keys, self.values) |
| 353 | } |
| 354 | |
| 355 | /// Return an array view of the keys of this dictionary as a PrimitiveArray. |
| 356 | pub fn keys(&self) -> &PrimitiveArray<K> { |