Trait rustnomial::FreeSizePolynomial[][src]

pub trait FreeSizePolynomial<N> {
    fn from_terms(terms: &[(N, usize)]) -> Self
    where
        Self: Sized
;
fn add_term(&mut self, coeff: N, degree: usize); }

Required methods

Creates an instance of self with the provided terms.

Adds the term with given coefficient coeff and degree degree to self.

Implementors