catlog::zero::rig

Trait Rig

Source
pub trait Rig: Monoid + AdditiveMonoid { }
Expand description

A rig, also known as a semiring.

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 Rig for f32

Source§

impl Rig for f64

Source§

impl Rig for i32

Source§

impl Rig for i64

Source§

impl Rig for u32

Source§

impl Rig for u64

Source§

impl Rig for usize

Implementors§

Source§

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