Is multiple assignment (e.g. val (x, y) = (1, 2)) less efficient at runtime than the corresponding single assignments (val x = 1; val y = 2)?
I can imagine the answer being "yes" because scala might need to construct intermediate tuples. Is this correct?
What if I had an extra tuple laying around, e.g. val tup = (1, 2)
Now is it more efficient to do:
(a) val (x, y) = tup
OR
(b) val x = tup._1; val y = tup._2
or are they the same?
The difference from the previous example is that the RHS no longer needs to be allocated.