[][src]Trait cyclotomic::fields::FieldElement

pub trait FieldElement: AdditiveGroup + MultiplicativeGroup {
    fn eq(&mut self, other: &mut Self) -> bool;
}

Provides operations for fields. Expected to satisfy the field axioms.

Required methods

fn eq(&mut self, other: &mut Self) -> bool

Equality, but can shuffle coefficients around and simplify expressions for greater efficiency.

Loading content...

Implementors

impl FieldElement for Number[src]

Loading content...