Function arrow::compute::kernels::comparison::no_simd_compare_op_scalar[][src]

pub fn no_simd_compare_op_scalar<T, F>(
    left: &PrimitiveArray<T>,
    right: T::Native,
    op: F
) -> Result<BooleanArray> where
    T: ArrowNumericType,
    F: Fn(T::Native, T::Native) -> bool
Expand description

Evaluate op(left, right) for PrimitiveArray and scalar using a specified comparison function.