Matrix.clear

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

struct Matrix(type, int rows_, int cols_)
@safe pure nothrow
void
clear
if (
(rows_ > 0) &&
(cols_ > 0)
)

Meta