Function polars::export::arrow::compute::comparison::boolean::compare_op_scalar
source · [−]pub fn compare_op_scalar<F>(
lhs: &BooleanArray,
rhs: bool,
op: F
) -> BooleanArray where
F: Fn(u64, u64) -> u64,
This is supported on crate feature
compute_comparison
only.Expand description
Evaluate op(left, right)
for BooleanArray
and scalar using
a specified comparison function.