operator * method

Decimal operator *(
  1. Decimal other
)

Multiplication

Implementation

Decimal operator *(Decimal other) {
  return Decimal(_value * other._value, _scale + other._scale);
}