operator unary- method

Expression<DT> operator unary-()

Returns the negation of this value.

Implementation

Expression<DT> operator -() {
  return (-dartCast<int>()).dartCast<DT>();
}