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

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

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

Required methods

fn checked_sub(&self, v: &Self) -> Option<Self>

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 i8[src]

impl CheckedSub for u128[src]

impl CheckedSub for usize[src]

impl CheckedSub for u8[src]

impl CheckedSub for u64[src]

impl CheckedSub for isize[src]

impl CheckedSub for i128[src]

impl CheckedSub for i32[src]

impl CheckedSub for u32[src]

impl CheckedSub for i64[src]

impl CheckedSub for u16[src]

impl CheckedSub for i16[src]

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

Loading content...

Implementors

Loading content...