Hi. In Kotlin/JVM and Kotlin/Js all collections ma...
# kotlin-native
e
Hi. In Kotlin/JVM and Kotlin/Js all collections maps to their platform realization. But what is happens with lisfOf, mapOf .. in Kotlin/Native (when running not in iOS)?
a
In JS collections (ArrayList, HashMap, etc.) are actually implemented in stdlib. AFAIK same is true for Kotlin/Native: https://github.com/JetBrains/kotlin-native/tree/master/runtime/src/main/kotlin/kotlin/collections
👌 1
e
Thanks!