Trait ark_ff::Zero[][src]

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

Defines an additive identity element for Self.

Laws

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

Required methods

pub 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.

pub fn is_zero(&self) -> bool[src]

Returns true if self is equal to the additive identity.

Loading content...

Provided methods

pub fn set_zero(&mut self)[src]

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

Loading content...

Implementations on Foreign Types

impl<T> Zero for Wrapping<T> where
    T: Zero,
    Wrapping<T>: Add<Wrapping<T>>,
    <Wrapping<T> as Add<Wrapping<T>>>::Output == Wrapping<T>, 
[src]

Loading content...

Implementors

impl Zero for f32[src]

impl Zero for f64[src]

impl Zero for i8[src]

impl Zero for i16[src]

impl Zero for i32[src]

impl Zero for i64[src]

impl Zero for i128[src]

impl Zero for isize[src]

impl Zero for u8[src]

impl Zero for u16[src]

impl Zero for u32[src]

impl Zero for u64[src]

impl Zero for u128[src]

impl Zero for usize[src]

impl<P: CubicExtParameters> Zero for CubicExtField<P>[src]

impl<P: QuadExtParameters> Zero for QuadExtField<P>[src]

impl<P: Fp64Parameters> Zero for Fp64<P>[src]

impl<P: Fp256Parameters> Zero for Fp256<P>[src]

impl<P: Fp320Parameters> Zero for Fp320<P>[src]

impl<P: Fp384Parameters> Zero for Fp384<P>[src]

impl<P: Fp768Parameters> Zero for Fp768<P>[src]

impl<P: Fp832Parameters> Zero for Fp832<P>[src]

Loading content...