SquareMatrix

Trait SquareMatrix 

Source
pub trait SquareMatrix: MatrixOracle<ColT = <Self as MatrixOracle>::RowT> { }
Expand description

Alias for a matrix whose column and row types match.

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.

Implementors§

Source§

impl<M> SquareMatrix for M
where M: MatrixOracle<ColT = <Self as MatrixOracle>::RowT>,