Trait num_traits::identities::Zero [−][src]
Required methods
fn zero() -> Self[src]
Returns the additive identity element of Self, 0.
Purity
This function should return the same result at all times regardless of
external mutable state, for example values stored in TLS or in
static muts.
fn is_zero(&self) -> bool[src]
Returns true if self is equal to the additive identity.
Provided methods
Loading content...Implementations on Foreign Types
impl<T: Zero> Zero for Wrapping<T> where
Wrapping<T>: Add<Output = Wrapping<T>>, [src]
Loading content...Wrapping<T>: Add<Output = Wrapping<T>>,