catlog::zero::rig

Trait AbGroup

Source
pub trait AbGroup: AdditiveMonoid + Neg<Output = Self> { }
Expand description

An abelian group, written additively.

Though logically redundant, this trait should also extend Sub<Output = Self>. So far I’ve been too lazy to make this change since the extra trait cannot be automatically derived without macro magic.

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

Source§

impl AbGroup for f64

Source§

impl AbGroup for i32

Source§

impl AbGroup for i64

Implementors§

Source§

impl<Var, Coef> AbGroup for Combination<Var, Coef>
where Var: Ord, Coef: Default + AbGroup,

Source§

impl<Var, Coef, Exp> AbGroup for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Default + AbGroup, Exp: Ord,