nitc :: FlowHashSet :: remove_from
other
self
# Remove all items found in `other` from `self`. fun remove_from(other: Collection[E]) do for e in other do remove(e) end