I want to map Map<DAO, Int>
to Map<String, Boolean>
but I can't return Map.Entry in map function:
itemsWithQuantity.mapTo(mutableMapOf<String, Boolean>(), { it.key.toString() to it.value != 0 })
(of course I am using more complex mapping function, but it doesn't matter, problem is same)
It says
MutableMap<String, Boolean> is not a subtype of MutableCollection<Pair<String, Boolean>>.
So how can I return Map.Entry instead of Pair?
Now I am doing it this way:
val detailsIds = mutableMapOf<String, Boolean>()
itemsWithQuantity.forEach { item, quantity -> detailsIds.put(it.key.toString(), it.value != 0) }
But I want to use mapTo
Use associateTo
instead:
xs.associateTo(mutableMapOf<String, Boolean>(), { "${it.key}" to (it.value != 0) })
Also, note the brackets around it.value != 0
.
The mapTo
function, similarly to map
, doesn't collect the results into a Map
, but instead works with a Collection
, expecting you to provide a MutableCollection<Pair<String, Boolean>>
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With