pub trait ArrayCheckedRem<Rhs>: Sized {
    // Required method
    fn checked_rem(&self, rhs: &Rhs) -> Self;
}
Available on crate feature compute_arithmetics only.
Expand description

Defines checked reminder operation for primitive arrays

Required Methods§

source

fn checked_rem(&self, rhs: &Rhs) -> Self

checked remainder

Implementors§