pub trait MatAdd<Rhs: MatrixKind>: MatrixKind {
    type Output: MatrixKind;

    // Required method
    fn mat_add<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>>(
        lhs: <Self as MatrixKind>::Ref<'_, LhsE>,
        rhs: <Rhs as MatrixKind>::Ref<'_, RhsE>
    ) -> <Self::Output as MatrixKind>::Own<E>;
}

Required Associated Types§

Required Methods§

source

fn mat_add<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>>( lhs: <Self as MatrixKind>::Ref<'_, LhsE>, rhs: <Rhs as MatrixKind>::Ref<'_, RhsE> ) -> <Self::Output as MatrixKind>::Own<E>

Object Safety§

This trait is not object safe.

Implementors§