Trait snarkvm_circuit::operators::DivSaturating
[−]pub trait DivSaturating<Rhs = Self> where
Rhs: ?Sized, {
type Output;
fn div_saturating(&self, rhs: &Rhs) -> Self::Output;
}
Expand description
Binary operator for dividing two values, bounding the quotient to MAX
or MIN
if an overflow occurs.