catlog::zero::rig

Trait CommRing

Source
pub trait CommRing: Ring + CommRig { }
Expand description

A commutative ring, assumed to be unital.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl CommRing for f32

Source§

impl CommRing for f64

Source§

impl CommRing for i32

Source§

impl CommRing for i64

Implementors§

Source§

impl<Var, Coef, Exp> CommRing for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Default + CommRing, Exp: Clone + Ord + AdditiveMonoid,