I can do something like
def f(): Tuple2[String, Long] = ... val (a, b) = f()
What about if the variables are already existing? I\'m runnin
It works for new values because that syntax is treated as a pattern matching, just like case statements. So, as Alex said, you cannot do it.