Trait ndarray::LinalgScalar
[−]
[src]
pub trait LinalgScalar: Any + Copy + Zero + One + Add<Output=Self> + Sub<Output=Self> + Mul<Output=Self> + Div<Output=Self> { }
Elements that support linear algebra operations.
Any
for type-based specialization, Copy
so that they don't need move
semantics or destructors, and the rest are numerical traits.