I’m implementing FIFO Queue in Kotlin/Native, and ...
# touchlab-tools
p
I’m implementing FIFO Queue in Kotlin/Native, and I need to add elements to back and front of the queue. Is there some thread safe collection that allows this in Kotlin/Native? In Kotlin/JVM I would use e.g. ConcurrentLinkedDeque.
r
Try
IsoArrayDeque
from stately-iso-collections
👏 1