public Ratio dividedBy(Money divisor) { assertHasSameCurrencyAs(divisor); return Ratio.of(amount, divisor.amount); }
public Money plus(Money other) { assertHasSameCurrencyAs(other); return Money.valueOf(amount.add(other.amount), currency); }