Module datafusion_python::datafusion_common::arrow::compute::kernels::arity
source · Expand description
Kernels for operating on PrimitiveArrays
Functions§
- Allies a binary infallable function to two
PrimitiveArrays, producing a newPrimitiveArray - Applies a binary and infallible function to values in two arrays, replacing the values in the first array in place.
- Applies the provided fallible binary operation across
aandb, returning any error, and collecting the results into aPrimitiveArray. If any index is null in eitheraorb, the corresponding index in the result will also be null - Applies the provided fallible binary operation across
aandbby mutating the mutablePrimitiveArrayawith the results, returning any error. If any index is null in eitheraorb, the corresponding index in the result will also be null - try_
unary_ dyn Deprecated Applies a fallible unary function to an array with primitive values. - unary_
dyn Deprecated Applies an infallible unary function to an array with primitive values.