pub trait InverseInto {
    type Output;

    fn inv_into(self) -> Result<Self::Output>;
}
Expand description

An interface for inverting matrices.

Required Associated Types

Required Methods

Computes the inverse of the matrix.

Implementations on Foreign Types

Implementors