pub trait InverseInto {
type Output;
// Required method
fn inv_into(self) -> Result<Self::Output>;
}Expand description
An interface for inverting matrices.
pub trait InverseInto {
type Output;
// Required method
fn inv_into(self) -> Result<Self::Output>;
}An interface for inverting matrices.