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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§