Function arrow::compute::kernels::comparison::eq

source ·
pub fn eq<T>(
    left: &PrimitiveArray<T>,
    right: &PrimitiveArray<T>
) -> Result<BooleanArray, ArrowError>where
    T: ArrowNumericType,
    <T as ArrowPrimitiveType>::Native: ArrowNativeTypeOp,
Expand description

Perform left == right operation on two PrimitiveArrays.

If simd feature flag is not enabled: For floating values like f32 and f64, this comparison produces an ordering in accordance to the totalOrder predicate as defined in the IEEE 754 (2008 revision) floating point standard. Please refer to f32::total_cmp and f64::total_cmp.