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| ... }


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

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