Access tuples by subscript
It is kind of possible using reflection:
Mirror(reflecting: tuples).children[AnyIndex(row)].value
No, you can only access tuple elements by directly specifying the index, e.g.
tuples.5
For your purpose you should simply use an array.