= private = protected
flatten()
Returns a new set that is a copy of the set, flattening each containing set recursively.
# File lib/set.rb, line 237 def flatten self.class.new.flatten_merge(self) end