Module arrow_arith::arity
source · Expand description
Kernels for operating on PrimitiveArray
s
Functions§
- Allies a binary infallable function to two
PrimitiveArray
s, 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
a
andb
, returning any error, and collecting the results into aPrimitiveArray
. If any index is null in eithera
orb
, the corresponding index in the result will also be null - Applies the provided fallible binary operation across
a
andb
by mutating the mutablePrimitiveArray
a
with the results, returning any error. If any index is null in eithera
orb
, the corresponding index in the result will also be null - try_unary_dynDeprecatedApplies a fallible unary function to an array with primitive values.
- unary_dynDeprecatedApplies an infallible unary function to an array with primitive values.