Trait Transpose

Source
pub trait Transpose: Copy {
    // Provided method
    fn t(self) -> Transpose<Self> { ... }
}
Expand description

The transpose operation

Provided Methods§

Source

fn t(self) -> Transpose<Self>

Transposes the matrix

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> Transpose for M
where M: Matrix,