Is the answer to that question just a Java questio...
# stdlib
s
Is the answer to that question just a Java question on the JVM? Are all Kotlin collections just aliases to Java collections? Or are there some Kotlin collections and the performance would be different for those?
e
there are some Kotlin collections:
ArrayDeque
is one. but in general things forward to Java collections on JVM
s
Isn't that just
java.util.ArrayDeque
? Javadoc