eql?(other)
Checks equality used by Hash.
# File lib/ipaddr.rb, line 401 def eql?(other) return self.class == other.class && self.hash == other.hash && self == other end