https://kotlinlang.org logo
z

zak.taccardi

02/02/2017, 10:28 PM
I have a
Map<T, Int>
that I want to convert to a
Map<T, Double>
- is there an idiomatic way to do this functionally in kotlin? if it were a
List
I would just do
list.map{ ... }