operator unary- method

Expression<DT> operator unary-()

Returns the negation of this value.

Implementation

Expression<DT> operator -() {
  return _UnaryMinus(this);
}