Matrix.opBinaryRight

Processes matrix multiplication and division with number.

struct Matrix(size_t Lines, size_t Cols, Type = float)
@trusted pure nothrow
Self
opBinaryRight
(
string op
Number
)
(
in Number num
)
if (
(
op == "*" ||
op == "/"
)
&&
isNumeric!Number
)
if (
Lines > 0 &&
Cols > 0
)

Meta