fun summarise(costs: Iterable<Money>): CostSummary {
val currencyTotals: List<Money> = costs
.groupBy { it.currency }
.values
.map {
it.sumOrNull() ?: error(“Unexpected empty list”)
}
val lines: List<CurrencyConversion> = currencyTotals
.sortedBy { it.currency.currencyCode }
.map(::toUserCurrency)
val total = lines
.map { it.toMoney }
.sum(userCurrency)
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.