MCPcopy Create free account
hub / github.com/apache/arrow-rs / into_parts

Method into_parts

arrow-array/src/array/byte_view_array.rs:293–295  ·  view source on GitHub ↗

Deconstruct this array into its constituent parts

(self)

Source from the content-addressed store, hash-verified

291
292 /// Deconstruct this array into its constituent parts
293 pub fn into_parts(self) -> (ScalarBuffer<u128>, Arc<[Buffer]>, Option<NullBuffer>) {
294 (self.views, self.buffers, self.nulls)
295 }
296
297 /// Returns the views buffer
298 #[inline]

Calls

no outgoing calls