method
eql?
v2_2_9 -
Show latest stable
- Class:
Set
eql?(o)public
No documentation available.
# File lib/set.rb, line 439
def eql?(o) # :nodoc:
return false unless o.is_a?(Set)
@hash.eql?(o.instance_variable_get(:@hash))
end