Matrix.array1D

struct Matrix(Number, size_t _rowCount, size_t _columnCount)
@trusted pure nothrow @property ref
inout(Number[rowCount * columnCount])
array1D
inout
(
)
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