- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #3336: Add childElements convenience method to scala.xml.Elem
Thu, 2010-04-22, 01:49
---------------------+------------------------------------------------------
Reporter: eengbrec | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: xml |
---------------------+------------------------------------------------------
I'd like a method like this on scala.xml.Elem
{{{
def childElements = child.collect { case e: Elem => e }
}}}
So that I can save a few keystrokes when I just want the children that are
elements, not all of the children.