Returns the underlying [`BooleanBuffer`] holding all the values of this array
(&self)
| 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. |
no outgoing calls
no test coverage detected