operator + method

Matrix2 operator +(
  1. Matrix2 arg
)

Returns new matrix after component wise this + arg

Implementation

Matrix2 operator +(Matrix2 arg) => clone()..add(arg);