This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use "collections" | |
| trait XMLElement is Seq[XMLElement] | |
| """A element in an XML tree. | |
| An element is a sequence containing its children. To get the `n`th child | |
| of some `element: XMLElement`, use `element(n)`. To get all of its children, | |
| use `element.values()`. | |
| """ |
NewerOlder