Function deltalake::arrow::compute::kernels::numeric::rem

source ·
pub fn rem(
    lhs: &dyn Datum,
    rhs: &dyn Datum
) -> Result<Arc<dyn Array>, ArrowError>
Expand description

Perform lhs % rhs

Overflow or division by zero will result in an error, with exception to floating point numbers, which instead follow the IEEE 754 rules