How do I parse an xml document as a stream using Scala? I\'ve used the Stax API in java to accomplish this, but I\'d like to know if there is a \"scala\" way to do this.
scala.xml.XML.loadFile(fileName: String) scala.xml.XML.load(url: URL) scala.xml.XML.load(reader: Reader) scala.xml.XML.load(stream: InputStream)
There are others...