= private = protected
==(other)
Returns true if two ipaddrs are equal.
# File lib/ipaddr.rb, line 150 def ==(other) other = coerce_other(other) rescue false else @family == other.family && @addr == other.to_i end