Returns the union of this set with the other set

Property definitions

core $ Set :: union
	# Returns the union of this set with the `other` set
	fun union(other: Set[E]): Set[E]
	do
		var nhs = new_set
		nhs.add_all self
		nhs.add_all other
		return nhs
	end
lib/core/collection/abstract_collection.nit:506,2--513,4