Hey everyone, question regarding collections in Ko...
# kotlin-native
m
Hey everyone, question regarding collections in Kotlin/Native 😄 => Is it possible to init and use an Array from C code? I’ve only succeeded by using specific helper methods like
fun initNewPersonArray(): Array<Person>
and
fun setPersonInArray(people: Array<Person>, p: Person, index: Int)
I’m just a rookie with Kotlin and Kotlin Native, please forgive me if I’m missing something obvious 🙂