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