Я знаю, что этот вопрос возник много раз по-разному. Но мне все еще не ясно. Есть ли способ достичь следующего.
def foo(a:Int, b:Int) = {}
foo(a,b) //right way to invoke foo
foo(getParams) // is there a way to get this working without explicitly unpacking the tuple??
def getParams = {
//Some calculations
(a,b) //where a & b are Int
}