no threads, super short example: ``` val l = listO...
# announcements
p
no threads, super short example:
Copy code
val l = listOf(a, b, c)
l.forEach {
    if (someCond) {
        l.remove(it)
        l.remove(y) // one of the other elements
    }
}