anyone have recommendations for multiplatform coll...
# multiplatform
w
anyone have recommendations for multiplatform collections like trees, sets, ordered sets?
a
Stdlib
mutableSetOf
preserves the order by design. There is
ArrayDeque
in stdlib as well. I have multiplatform implementation of
PriorityQueue
, let me know if you are interested. Not sure about trees though.