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

Method values

arrow-array/src/array/boolean_array.rs:155–157  ·  view source on GitHub ↗

Returns the underlying [`BooleanBuffer`] holding all the values of this array

(&self)

Source from the content-addressed store, hash-verified

153
154 /// Returns the underlying [`BooleanBuffer`] holding all the values of this array
155 pub fn values(&self) -> &BooleanBuffer {
156 &self.values
157 }
158
159 /// Returns the number of non null, true values within this array.
160 /// If you only need to check if there is at least one true value, consider using `has_true()` which can short-circuit and be more efficient.

Callers 6

true_countMethod · 0.45
has_trueMethod · 0.45
has_falseMethod · 0.45
bitwise_unaryMethod · 0.45
bitwise_bin_opMethod · 0.45
newMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected