I am curious how to do a for loop with a tuple in swift.
I know that to access each member you can use dot notation using the index number
var tuple
No, you can't. The reason is that tuple items are not all required to have the same type, so you would not be able to know what type each should have.
each