Matrix.opAssign - multiple declarations

Function Matrix.opAssign

Allows assigning the matrix to a static two-dimensional array to set all components of the matrix

void opAssign (
  T[][] rhs
);

void opAssign (
  T[columns][rows] rhs
);

Function Matrix.opAssign

Allows assigning the matrix to a single value to set all elements of the matrix to such a value

void opAssign (
  T rhs
);