How to index TTuple

How to index a TTuple? Documentation is very sparse for this object

I couldn’t find the answer to this documented anywhere, so here’s the answer.
TTuples are indexed by calling Get()
So if you have declared this TTuple
TTuple<int, int, int> coordinate
You would get the first integer by calling
coordinate.Get<0>()