An example:
val l = List(1,2,3) val t = List(-1,-2,-3)
Can I do something like this?
for (i <- 0 to 10) yield (l(i)) yie
Maybe yield is not the best way to go? Perhaps simple array appending could be used here.