Vec.opBinaryRight

Perform a scalar operation on the vector.

struct Vec(T, size_t N)
const
Vec!(T, N)
opBinaryRight
(
string op
U
)
(
in U val
)
if (
(
op == "+" ||
op == "-"
||
op == "*"
||
op == "/"
||
(
op == "%" &&
__traits(isIntegral, U)
)
)
&&
isNumeric!U
)
if (
N > 0 &&
isNumeric!T
)

Meta