Matrix.RowType

struct Matrix(T, ubyte R, ubyte C = R, MatrixOrder O = CurrentMatrixOrder)
static if(O == MatrixOrder.RowMajor)
alias RowType = Vector!(T, C)

Meta