How can I override
Seq(Seq(1,2), Seq(2,3)).mkString("::")
to return
(1, 2)::(2, 3)
instead of:
List(1, 2)::List(2, 3)
edit
It looks like it boils down to:
Seq((1,2), (2,3)).mkString("::")
how can I convert the nested sequence to tuples? (As this prints nicely without the type identifier). But a tuple would not work Convert a Scala list to a tuple?