Method: REXML::AttlistDecl#each

Defined in:
lib/rexml/attlistdecl.rb

#each(&block) ⇒ Object

Iterate over the key/value pairs:

attlist_decl.each { |attribute_name, attribute_value| ... }


50
51
52
# File 'lib/rexml/attlistdecl.rb', line 50

def each(&block)
  @pairs.each(&block)
end