operator + method

Money operator +(
  1. Money other
)

Implementation

Money operator +(Money other) {
  _assertSameCurrency(other);
  return Money._(amount + other.amount, currency);
}