Matrix.transpose

Transposes the current matrix;

struct Matrix(type, int rows_, int cols_)
@safe pure nothrow
static if(rows == cols)
void
transpose
()
if (
(rows_ > 0) &&
(cols_ > 0)
)

Meta