pub fn try_binary<T, D, F>(
    lhs: &PrimitiveArray<T>,
    rhs: &PrimitiveArray<D>,
    data_type: DataType,
    op: F
) -> Result<PrimitiveArray<T>> where
    T: NativeType,
    D: NativeType,
    F: Fn(T, D) -> Result<T>, 
Expand description

Version of binary that checks for errors in the closure used to create the buffer