How to get an array of multitouch coordinate pairs

I need to do some math on my multitouch coordinate pairs but for that I need to have an array of all the multitouch pairs that I can loop over as many times as I need. So far I’m getting separate touch events for each finger but alas I need all events at the same time.

I suppose I can grab each touch event, add it to an array, and then in the next frame work with them but I was hoping there was a faster way to get them all at the same time. Is there?