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.