Matrix.clear

Sets all values of the matrix to value ( each column in each col will contain this value ).

struct Matrix(type, int numCols, int numRows)
@safe pure nothrow
void
clear
(
valueType value
)
if (
(numCols > 1) &&
(numRows > 1)
)

Meta