Returns transposed matrix.
auto m1 = Matrix2I(4, 5, /**/ -1, 0); assert(m1.transposed().v == [4, -1, /**/ 5, 0]);
See Implementation
Returns transposed matrix.