Trait argmin::prelude::CheckedSub[][src]

pub trait CheckedSub: Sub<Self, Output = Self> {
    pub fn checked_sub(&self, v: &Self) -> Option<Self>;
}

Performs subtraction that returns None instead of wrapping around on underflow.

Required methods

pub fn checked_sub(&self, v: &Self) -> Option<Self>[src]

Subtracts two numbers, checking for underflow. If underflow happens, None is returned.

Loading content...

Implementations on Foreign Types

impl CheckedSub for BigInt[src]

impl CheckedSub for BigUint[src]

impl CheckedSub for u16[src]

impl CheckedSub for i128[src]

impl CheckedSub for isize[src]

impl CheckedSub for i32[src]

impl CheckedSub for u64[src]

impl CheckedSub for u8[src]

impl CheckedSub for u32[src]

impl CheckedSub for i64[src]

impl CheckedSub for usize[src]

impl CheckedSub for u128[src]

impl CheckedSub for i16[src]

impl CheckedSub for i8[src]

impl<T> CheckedSub for Ratio<T> where
    T: Clone + Integer + CheckedMul + CheckedSub
[src]

Loading content...

Implementors

Loading content...