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

Defines Overflowing subtraction operation for primitive arrays

Required Methods§

source

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

overflowing subtraction

Implementors§