# File lib/Dnsruby/name.rb, line 135
    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