class Nokogiri::XML::NodeSet

def each

Experimental RBS support (using type sampling data from the type_fusion project).

def each: () -> untyped

This signature was generated using 2 samples from 1 application.

Iterate over each node, yielding to +block+
##
def each
  return to_enum unless block_given?
  0.upto(length - 1) do |x|
    yield self[x]
  end
  self
end