Function polars_arrow::compute::arity::try_binary

source ยท
pub fn try_binary<T, D, F>(
    lhs: &PrimitiveArray<T>,
    rhs: &PrimitiveArray<D>,
    data_type: ArrowDataType,
    op: F,
) -> PolarsResult<PrimitiveArray<T>>
where T: NativeType, D: NativeType, F: Fn(T, D) -> PolarsResult<T>,
Expand description

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