= 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 175 def flatten! if detect { |e| e.is_a?(Set) } replace(flatten()) else nil end end