2
votes
Scala: how to create XML nodes from some collection
For completeness, you can also use for..yield (or function calls):
import scala.xml
class Person(val name: String, val age: Int) {
def toXml(): xml.Elem =
<person><n …
