Function arrow::compute::max_boolean

source ·
pub fn max_boolean(array: &BooleanArray) -> Option<bool>
Expand description

Returns the maximum value in the boolean array


let a = BooleanArray::from(vec![Some(true), None, Some(false)]);
assert_eq!(max_boolean(&a), Some(true))