pub trait Saturating {
    fn saturating_add(self, v: Self) -> Self;
    fn saturating_sub(self, v: Self) -> Self;
}
Expand description

Saturating math operations. Deprecated, use SaturatingAdd, SaturatingSub and SaturatingMul instead.

Required Methods

Saturating addition operator. Returns a+b, saturating at the numeric bounds instead of overflowing.

Saturating subtraction operator. Returns a-b, saturating at the numeric bounds instead of overflowing.

Implementations on Foreign Types

Implementors