I am trying to zip multiple sequences to form a long tuple:
zip
val ints = List(1,2,3) val chars = List(\'a\', \'b\', \'c\') val strings = List(\"Al
Here is another solution which would work for your problem.
ints zip chars zip strings zip bools map{ case (((a, b), c), d) => (a,b,c,d)}