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

Method into_parts

arrow-array/src/array/run_array.rs:205–207  ·  view source on GitHub ↗

Deconstruct this array into its constituent parts

(self)

Source from the content-addressed store, hash-verified

203
204 /// Deconstruct this array into its constituent parts
205 pub fn into_parts(self) -> (DataType, RunEndBuffer<R::Native>, ArrayRef) {
206 (self.data_type, self.run_ends, self.values)
207 }
208
209 /// Returns a reference to the [`RunEndBuffer`].
210 pub fn run_ends(&self) -> &RunEndBuffer<R::Native> {

Calls

no outgoing calls