= private = protected
flatten!()
Equivalent to Set#flatten, but replaces the receiver with the result in place. Returns nil if no modifications were made.
# File lib/set.rb, line 243 def flatten! replace(flatten()) if any? { |e| e.is_a?(Set) } end