pub trait QRSquareInto: Sized {
type R;
// Required method
fn qr_square_into(self) -> Result<(Self, Self::R)>;
}
Expand description
QR decomposition for square matrix
Required Associated Types§
Required Methods§
fn qr_square_into(self) -> Result<(Self, Self::R)>
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.