I want to write my custom toString
to convert a list of lists to a string with delimiter |
trait Msg {
def toCustString(): String
}
trait Ele[T] extends Msg {
val value: T
override def toCustString(): String = s"${value}"
}
trait Grp extends Msg {
val list: Seq[Msg]
override def toCustString(): String = ""
}
case class TypeA(value: Int) extends Ele[Int]
case class TypeB(value: String) extends Ele[String]
case class TypeC(value: Float) extends Ele[Float]
case class MyGrp(list: Seq[Msg]) extends Grp
object Demo extends App {
val grp1 = MyGrp(Seq(TypeA(2)))
val grp2 = MyGrp(Seq(TypeB("ABC"), TypeC(20)))
val s=MyGrp(Seq(grp1,grp2))
print(s)
}
Final output should be 2|ABC|20|
.Please notice the deliminator at end
Can anyone suggest a solution how to work on the above nested structure?
I have tried the below
override def toCustString(): String = list.map(_.toCustString()).toString
You just have to turn everything in the
list
to itsCustString
representation before callingmkString()
on it.Tested as follows.