Vector.opUnary

struct Vector(size_t N, T, alias string AS = "")
pure const
opUnary
(
string op
)
()
if (
op == "-" &&
is(typeof(T.init * (-1)) : T)
)
if (
isCompatibleArrayAccessStrings(N, AS, VVASES, VVASVS) ||
AS.length == 0
)

Meta