I have a `Map<T, Int>` that I want to conver...
# announcements
z
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{ ... }