Trait ndarray::linalg::Ring

source ·
pub trait Ring: Clone + Zero + Add<Output = Self> + Sub<Output = Self> + One + Mul<Output = Self> { }
Expand description

Trait union for a ring with 1.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<A: Clone + Zero + Add<Output = A> + Sub<Output = A> + One + Mul<Output = A>> Ring for A