Matrix.opUnary

Define unary operators + and -

struct Matrix(T, size_t dim_)
nothrow @nogc pure const
opUnary
(
string op
)
()
if (
op == "+" ||
op == "-"
)
if (
__traits(isFloating, T) &&
dim_ >= 2
&&
dim_ <= 4
)

Meta