Matrix.ColumnType

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

Meta