Returns the number of non null, false values within this array. If you only need to check if there is at least one false value, consider using `has_false()` which can short-circuit and be more efficient.
(&self)
| 175 | /// Returns the number of non null, false values within this array. |
| 176 | /// If you only need to check if there is at least one false value, consider using `has_false()` which can short-circuit and be more efficient. |
| 177 | pub fn false_count(&self) -> usize { |
| 178 | self.len() - self.null_count() - self.true_count() |
| 179 | } |
| 180 | |
| 181 | /// Returns whether there is at least one non-null `true` value in this array. |
| 182 | /// |
nothing calls this directly
no test coverage detected