# File lib/nokogiri/xml/node_set.rb, line 136
      def each(&block)
        x = 0
        while x < length
          yield self[x]
          x += 1
        end
      end