operator unary- method

BigDecimal operator unary-()

Returns the negation of this BigDecimal.

Implementation

BigDecimal operator -() {
  return BigDecimal._(-_unscaledValue, _scale);
}