Vector.opBinaryRight

Componentwise binary skalar-vector operation: addition, subtraction, multiplication, division

struct Vector(type, int dim)
nothrow @nogc pure nothrow @nogc pure nothrow @nogc @safe const
opBinaryRight
(
string op
)
if (
(op == "+") ||
(op == "-")
||
(op == "*")
||
(op == "/")
)
if (
(dim >= 2) &&
(dim <= 4)
)

Meta