So I have a Sequence of Ints representing notes on a guitar, now since this guitar will have 6 strings, I also have a function parameter that takes 6 Ints in a tuple like this:
pos: (Int, Int, Int, Int, Int, Int)
After have looked for "Scala seq to tuple" on Google and having found nothing useful I ask here.
How do I pass my Seq[Int]
as a tuple into my function parameter most effectively?