Remove all items found in other from self.

Property definitions

nitc $ FlowHashSet :: remove_from
	# Remove all items found in `other` from `self`.
	fun remove_from(other: Collection[E]) do
		for e in other do remove(e)
	end
src/saf/saf_base.nit:122,2--125,4