# File lib/set.rb, line 275 def merge(enum) if enum.is_a?(Set) @hash.update(enum.instance_eval { @hash }) else enum.each { |o| add(o) } end self end