We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
new scala.xml.NodeBuffer() &+ scala.xml.Text("Text 1")
should print as:
NodeBuffer(Text 1)
but prints as
ArrayBuffer(Text 1).
ArrayBuffer(Text 1)
I think you just need to add
override def stringPrefix: String = "NodeBuffer"