Matrix.ptr

Returns a pointer to content.

struct Matrix(T, ubyte R, ubyte C = R, MatrixOrder O = CurrentMatrixOrder)
pure nothrow inout @nogc @property
static if(O == MatrixOrder.RowMajor)
inout(T)*
ptr
()
if (
R >= 2 &&
R <= 4
&&
C >= 2
&&
C <= 4
)

Meta