# File lib/nokogiri/xml/node_set.rb, line 237
      def each(&block)
        0.upto(length - 1) do |x|
          yield self[x]
        end
      end