Matrix.opOpAssign

Inplace matrix multiplication with "*=" operator, only available for square matrices.

struct Matrix(T, uint numColumns, uint numRows = numColumns)
ref return
static if(isSquare)
opOpAssign
(
string op : "*"
)
(
const auto ref Matrix other
)
if (
numColumns > 0 &&
numRows > 0
)

Meta