Trait nannou_core::prelude::ops::overflowing::OverflowingSub[][src]

pub trait OverflowingSub: Sub<Self, Output = Self> {
    fn overflowing_sub(&self, v: &Self) -> (Self, bool);
}
Expand description

Performs substraction with a flag for overflow.

Required methods

Returns a tuple of the difference along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

Implementations on Foreign Types

Implementors