<How to filter a Mutable Map in place in Kotlin> I...
# stackoverflow
u
How to filter a Mutable Map in place in Kotlin I would like to remove items from a MutableMap, similar to filter. In list I can use removeAll { } and retainAll { } (see this question: How to filter a list in-place with Kotlin?). Is there something similar for Mutable Maps?