has_elements?()
public
Evaluates to true if this element has at least one child Element
doc = Document.new "<a><b/><c>Text</c></a>"
doc.root.has_elements
doc.elements["/a/b"].has_elements
doc.elements["/a/c"].has_elements
# File lib/rexml/element.rb, line 325
def has_elements?
!@elements.empty?
end