Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
min_boolean in datafusion::common::arrow::compute - Rust
[go: Go Back, main page]

Function min_boolean

Source
pub fn min_boolean(array: &BooleanArray) -> Option<bool>
Expand description

Returns the minimum value in the boolean array.


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