Matrix.opApply

Overload for foreach(rowIndex, columnIndex, value; matrix) {}

struct Matrix(Number, size_t _rowCount, size_t _columnCount)
@trusted
int
opApply
(
int delegate(
ref size_t
,
ref size_t
,
ref Number
)
dg
)
if (
isNumeric!Number &&
_rowCount > 0
&&
_columnCount > 0
)

Meta