pub fn divide_unchecked<T>(
    left: &PrimitiveArray<T>,
    right: &PrimitiveArray<T>
) -> Result<PrimitiveArray<T>> where
    T: ArrowFloatNumericType,
    T::Native: Div<Output = T::Native>, 
Expand description

Perform left / right operation on two arrays without checking for division by zero. The result of dividing by zero follows normal floating point rules. If either left or right value is null then the result is also null. If any right hand value is zero then the result of this