I remember a kotlin java8 with removeIf methods fr...
# announcements
j
I remember a kotlin java8 with removeIf methods from collections, was that moved somewhere else?
s
you mean like
filterNot { ... }
?
or, wait, no,
removeIf { ... }
is still there on
MutableList
j
I mean that it would be removed from the MutableMap
s
ah okay, gotta mention the type you’re looking at lol
j
Hm, I thought it would be an extension on MutableCollection instead, sorry
d
removeAll { }
.
👏 1
^ In Kotlin multiplatform