Open
Description
Motivation
It's not possible to implement this operation efficiently from outside the library. You either iterate a snapshot and end up silently copying the collection, or you have to collect the items to be removed in a separate collection and then .subtract
that.
Proposed solution
Add remove(where:)
to Set
and Dictionary
.
Alternatives considered
No response
Additional information
No response