Suppose I have a person class and each person has 100 variables, called v1 thru v100. Let's say my instance of person is called p. I get an array with 100 values and I want to assign the first value to p.v1, the second to p.v2, etc.
How can you do this in Swift 3?