Matrix.array1D

struct Matrix(Number, size_t _rowCount, size_t _columnCount)
@trusted pure nothrow @property ref inout
inout(Number[rowCount * columnCount])
array1D
()
if (
isNumeric!Number &&
_rowCount > 0
&&
_columnCount > 0
)

Return Value

Type: inout(Number[rowCount * columnCount])

A reference to this matrix's data as a 1D array.

Meta