pub fn compare_op_scalar<T, F>(
    lhs: &PrimitiveArray<T>,
    rhs: T,
    op: F
) -> BooleanArray where
    T: NativeType + Simd8,
    F: Fn(T::Simd, T::Simd) -> u8
Available on crate feature compute_comparison only.
Expand description

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