Is there something like LinkedList in Kotlin Nativ...
# kotlin-native
d
Is there something like LinkedList in Kotlin Native? (I also wonder if there are good reasons not to implement it as part of multiplatform
kotlin.collections
🤔)
e
What is your use-case for LinkedList?
d
Using it as a queue.
e
We plan to introduce multi-platform
ArrayDeque
(both K/N and JS) for this use-case. See https://youtrack.jetbrains.com/issue/KT-21327
(It is several times faster than linked list for a queue use-case)
👍 2