Function arrow::compute::kernels::arithmetic::divide_scalar[][src]

pub fn divide_scalar<T>(
    array: &PrimitiveArray<T>,
    divisor: T::Native
) -> Result<PrimitiveArray<T>> where
    T: ArrowNumericType,
    T::Native: Add<Output = T::Native> + Sub<Output = T::Native> + Mul<Output = T::Native> + Div<Output = T::Native> + Rem<Output = T::Native> + Zero + One
Expand description

Divide every value in an array by a scalar. If any value in the array is null then the result is also null. If the scalar is zero then the result of this operation will be Err(ArrowError::DivideByZero).