Trait num_traits::ops::saturating::SaturatingAdd [−][src]
pub trait SaturatingAdd: Sized + Add<Self, Output = Self> { fn saturating_add(&self, v: &Self) -> Self; }
Expand description
Performs addition that saturates at the numeric bounds instead of overflowing.
Required methods
fn saturating_add(&self, v: &Self) -> Self
[src]
fn saturating_add(&self, v: &Self) -> Self
[src]Saturating addition. Computes self + other
, saturating at the relevant high or low boundary of
the type.