Matrix.transpose

Transposes the current matrix TODO : as free function and use here

struct Matrix(type, int numCols, int numRows)
@safe pure nothrow
static if(cols == rows)
void
transpose
()
if (
(numCols > 1) &&
(numRows > 1)
)

Meta