#include <h5tuple.h>
Tuple<T,N> provides a generic tuple for N=1..4 providing fields with names `first`, `second`, `third`, and up to `fourth`.
Python example:
# TupleUInt3() is a Tuple<unsigned int, 3> >>> t = TupleUInt3() # Values can be modified in various ways: >>> t.set([0,0,3]) >>> t.first = 1 >>> t[1] = 2 # Values can be retrieved in various ways: >>> t.get() (1, 2, 3) >>> t[0] 1 >>> t.third 3