pub trait ArrayWrappingSub<Rhs>: Sized {
    fn wrapping_sub(&self, rhs: &Rhs) -> Self;
}
This is supported on crate feature compute_arithmetics only.
Expand description

Defines wrapping subtraction operation for primitive arrays

Required methods

wrapping subtraction

Implementors