= private = protected
<=>(other)
Compares the ipaddr with another.
# File lib/ipaddr.rb, line 325 def <=>(other) other = coerce_other(other) return nil if other.family != @family return @addr <=> other.to_i end