pub trait MIntMatrix<M>where
M: MIntBase,{
// Required method
fn determinant_linear(self, other: Self) -> Option<Vec<MInt<M>>>
where M: MIntConvert<usize> + MIntConvert<u64>;
}
Required Methods§
Sourcefn determinant_linear(self, other: Self) -> Option<Vec<MInt<M>>>
fn determinant_linear(self, other: Self) -> Option<Vec<MInt<M>>>
det(self + other * x)
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.