auto m1 = Matrix2F(3.2f, 4.5f, /**/ 3.8f, -7.2f); Matrix2I m2 = cast(Matrix2I)m1; assert(m2.v == [3, 4, /**/ 3, -7]);
See Implementation