- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Node constructor type
Thu, 2009-02-05, 01:24
Hi everyone,
Currently, we can stick any old type into an XML block, e.g.:
{
myObject.toString
}
or
{
myObject.toString
log.info("Did myObject.toString")
}
But, oh dear!, I've been very naive and my node contents now evaluates
to Unit. But the typechecker hasn't warned me, and I'm now confused as
to why my node looks empty. I'm probably about to start looking into
the toString method on myObject.
So can we do anything about this? XML blocks take Anys, and determine
the content type by reflection. Whilst this unfortunately permits the
above, it also allows you to write:
{
if(condition) "string" else
}
which overloading the node constructor wouldn't.
But could we change the constructor to take Seq[Node] and define implicits:
import scala.xml._
def nodeToSeqNode(n : Node) = List(n)
def stringToSeqNode(s : String) = List(Text(s))
def intToSeqNode(i : Int) = List(Text(i.toString))
in Predef?
Does this work?
Jon