okay, this might be a silly question.
So I have some tuples of size 4 so like (int,int,int,int)
If it were a 2 tuple I could use fst(myTuple) to refer to th
If you want random access to a generally sized tuple, then it is not possible. For any given size, you can follow ildjarn's answer (extending it for four, five, etc.), but that it the only (functional) way.
A possibility for tuples in general, is to convert it to a list first, as found here, but that's not too pretty as it requires reflection.