Available on crate feature compute_comparison only.
Expand description

Comparison functions for BooleanArray

Functions

Evaluate op(left, right) for BooleanArray and scalar using a specified comparison function.
Perform lhs == rhs operation on two BooleanArrays.
Perform lhs == rhs operation on two BooleanArrays and include validities in comparison.
Perform lhs == rhs operation on a BooleanArray and a scalar value.
Perform lhs == rhs operation on a BooleanArray and a scalar value and include validities in comparison.
Perform left > right operation on two arrays. Non-null values are greater than null values.
Perform left >= right operation on two arrays. Non-null values are greater than null values.
Perform left >= right operation on an array and a scalar value. Non-null values are greater than null values.
Perform left > right operation on an array and a scalar value. Non-null values are greater than null values.
Perform left < right operation on two arrays.
Perform left <= right operation on two arrays.
Perform left <= right operation on an array and a scalar value. Null values are less than non-null values.
Perform left < right operation on an array and a scalar value.
lhs != rhs for BooleanArray
lhs != rhs for BooleanArray and include validities in comparison.
Perform left != right operation on an array and a scalar value.
Perform left != right operation on an array and a scalar value.