ribesg
04/02/2018, 12:31 AMmyMutableMap.values.removeAll { <predicate> }
Will this remove entries from the map?Alexander Mikhalchenko
04/02/2018, 5:53 AMReturns a Collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa.
hallvard
04/02/2018, 10:20 AM.removeAll { false }
, the answer to your question is no. 😄ribesg
04/02/2018, 11:50 AM