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