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

Method values

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

Returns a reference to the values array. Any slicing of this [`RunArray`] array is **not** applied to the returned values here and must be handled separately.

(&self)

Source from the content-addressed store, hash-verified

216 /// Any slicing of this [`RunArray`] array is **not** applied to the returned
217 /// values here and must be handled separately.
218 pub fn values(&self) -> &ArrayRef {
219 &self.values
220 }
221
222 /// Returns a new [`RunArray`] with the same `run_ends` and the supplied `values`.
223 ///

Calls

no outgoing calls