Trait sp_arithmetic::traits::CheckedSub [−][src]
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.