Is there a good way to avoid `ConcurrentModificati...
# getting-started
w
Is there a good way to avoid `ConcurrentModificationException`'s? I get them a lot because simple things like
myList.filter { ... }
will generate an iterator which is not thread-safe.