Are there plans to implement LinkedList and TreeM...
# language-proposals
a
Are there plans to implement LinkedList and TreeMap to kotlin? (or there are alternatives)
a
first of all those things belong into #stdlib and second you can reuse them from Java
b
@Andreas Sinz don't forget about non-JVM targets
d
TreeMap
I can get behind. But
LinkedList
? Who in their right mind uses
LinkedList
...
b
Linked lists are very useful for operations that require frequent insertions and deletions, especially while iterating.
1