Matrix.__anonymous

Fields definition.

struct Matrix(T, ubyte R, ubyte C = R, MatrixOrder O = CurrentMatrixOrder)
static if(O == MatrixOrder.RowMajor)
union __anonymous {}

Members

Variables

c
T[C][R] c;

Components.

row
RowType[R] row;

All rows.

v
T[C * R] v;

All elements.

Meta