pub trait Zero: Add<Self, Output = Self> {
    fn zero() -> Self;
fn is_zero(&self) -> bool; fn set_zero(&mut self) { ... } }
Expand description

Defines an additive identity element for Self.

Laws

a + 0 = a       ∀ a ∈ Self
0 + a = a       ∀ a ∈ Self

Required methods

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.

Returns true if self is equal to the additive identity.

Provided methods

Sets self to the additive identity element of Self, 0.

Implementations on Foreign Types

Implementors

impl<T, R: DimName, C: DimName> Zero for OMatrix<T, R, C> where
    T: Scalar + Zero + ClosedAdd,
    DefaultAllocator: Allocator<T, R, C>, 

impl<T: SimdRealField> Zero for Quaternion<T> where
    T::Element: SimdRealField

impl<T: SimdRealField> Zero for DualQuaternion<T> where
    T::Element: SimdRealField

impl Zero for BigInt

impl Zero for BigUint

impl<T: Clone + Num> Zero for Complex<T>

impl<T: Clone + Integer> Zero for Ratio<T>