module MultiXml::Parsers::Rexml

def merge_element!(hash, element)

XML element to merge into hash
element::
Hash to merge the converted element into.
hash::

Convert an XML element and merge into the hash
def merge_element!(hash, element)
  merge!(hash, element.name, collapse(element))
end