operator unary- method
Returns the negation of this BigDecimal.
Implementation
BigDecimal operator -() {
return BigDecimal._(-_unscaledValue, _scale);
}
Returns the negation of this BigDecimal.
BigDecimal operator -() {
return BigDecimal._(-_unscaledValue, _scale);
}