# File lib/dnsruby/resource/NSEC.rb, line 52
      def check_name_in_wildcard_range(n)
        #   Check if the name is covered by this record
        return false unless @name.wild?
        return false if @next_domain.canonically_before(n)
        #  Now just check that the wildcard is *before* the name
        #  Strip the first label ("*") and then compare
        n2 = Name.create(@name)
        n2.labels.delete_at(0)
        ! n.canonically_before(n2)
      end