Matrix.opIndexOpAssign

operation and assign an element.

struct Matrix(size_t ROWS, size_t COLS, E = float)
ref return scope
const(E)
opIndexOpAssign
(
string op
)
(
auto ref const(E) value
,
size_t i
,
size_t j
)

Parameters

op

operator.

value const(E)

element value.

i size_t

row index.

j size_t

column index.

Return Value

Type: const(E)

assigned element value.

Meta