Function arrow::compute::kernels::arithmetic::modulus_dyn
source · pub fn modulus_dyn(
left: &dyn Array,
right: &dyn Array
) -> Result<Arc<dyn Array>, ArrowError>
Expand description
Perform left % right
operation on two arrays. 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
operation will be Err(ArrowError::DivideByZero)
.