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

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

Helper function to perform boolean lambda function on values from two arrays, this version does not attempt to use SIMD.