pub trait Zero: ConstantTimeEq + Sized { const ZERO: Self; // Provided method fn is_zero(&self) -> Choice { ... } }
Zero values.
The value 0.
0
Determine if this value is equal to zero.
If zero, returns Choice(1). Otherwise, returns Choice(0).
Choice(1)
Choice(0)