operator + method

Matrix<T> operator +(
  1. Matrix<T> other
)

Returns a view of this Matrix added to other.

Implementation

Matrix<T> operator +(Matrix<T> other) =>
    binaryOperation(other, dataType.field.add);