Skip to main content

MatSubAssign

Trait MatSubAssign 

Source
pub trait MatSubAssign<Rhs: MatrixKind>: MatrixKind {
    // Required method
    fn mat_sub_assign<E: ComplexField, RhsE: Conjugate<Canonical = E>>(
        lhs: <Self as MatrixKind>::Mut<'_, E>,
        rhs: <Rhs as MatrixKind>::Ref<'_, RhsE>,
    );
}
Expand description

Matrix subtraction.

Required Methods§

Source

fn mat_sub_assign<E: ComplexField, RhsE: Conjugate<Canonical = E>>( lhs: <Self as MatrixKind>::Mut<'_, E>, rhs: <Rhs as MatrixKind>::Ref<'_, RhsE>, )

Computes lhs - rhs and assigns it to lhs.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§