Matrix.transposed

Returns a transposed copy of the matrix.

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

Meta