Module arrow2::compute::comparison::primitive
source · Available on crate feature
compute_comparison
only.Expand description
Comparison functions for PrimitiveArray
Functions
Evaluate
op(left, right)
for PrimitiveArray
and scalar using
a specified comparison function.Perform
lhs == rhs
operation on two arrays.Perform
lhs == rhs
operation on two arrays 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 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.Perform
left != right
operation on two arrays.Perform
left != right
operation on two arrays 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 and include validities in comparison.