Trait num_traits::ops::overflowing::OverflowingAdd
source · [−]pub trait OverflowingAdd: Sized + Add<Self, Output = Self> {
fn overflowing_add(&self, v: &Self) -> (Self, bool);
}
Expand description
Performs addition with a flag for overflow.