# File lib/dnsruby/name.rb, line 153
    def <=>(other)
      #  return -1 if other less than us, +1 if greater than us
      return 0 if (canonical == other.canonical)
      if (canonically_before(other))
        return +1
      end
      return -1
    end