operator unary- method

Decimal operator unary-()

Negation

Implementation

Decimal operator -() {
  return Decimal(-_value, _scale);
}