pub fn add_scalar_checked<T>(
    array: &PrimitiveArray<T>,
    scalar: <T as ArrowPrimitiveType>::Native
) -> Result<PrimitiveArray<T>, ArrowError>where
    T: ArrowNumericType,
    <T as ArrowPrimitiveType>::Native: ArrowNativeTypeOp,
Expand description

Add every value in an array by a scalar. If any value in the array is null then the result is also null.

This detects overflow and returns an Err for that. For an non-overflow-checking variant, use add_scalar instead.