pub trait EuclideanRing: CommutativeRing {
    fn degree(self) -> usize;
    fn div(self, other: Self) -> Self;
    fn modulo(self, other: Self) -> Self;
}

Required Methods§

Implementations on Foreign Types§

Implementors§