Trait MatrixRef

Source
pub trait MatrixRef<M: MatrixCommon>: Mul<Scale<M::T>, Output = M> { }
Expand description

A trait allowing for references to implement matrix operations

Implementors§

Source§

impl<RefT, M: MatrixCommon> MatrixRef<M> for RefT
where RefT: Mul<Scale<M::T>, Output = M>,