<@U21TG670B>: Here is one option, though I'm not c...
# getting-started
e
@jordanjennings: Here is one option, though I'm not confident this is the best way. I'd wait for others to confirm or give better suggestions
Copy code
// transform a Map<Int, Int> into a Map<String, String>
val intMap = mapOf(1 to 2, 3 to 4)
val stringMap = intMap.mapKeys { it.key.toString() }.mapValues { it.value.toString() }