pub fn max_boolean(array: &BooleanArray) -> Option<bool>
This is supported on crate feature
compute_aggregate
only.Expand description
Returns the maximum value in the boolean array
use arrow2::{
array::BooleanArray,
compute::aggregate::max_boolean,
};
let a = BooleanArray::from(vec![Some(true), None, Some(false)]);
assert_eq!(max_boolean(&a), Some(true))