— NodeList#each
iterates over each node of the NodeList.
1281 1282 1283 1284 1285
# File 'lib/xml/dom/core.rb', line 1281 def each @nodes.each do |value| yield(value) end end