A tuple which has automatically generated member names. The names are in order of what was passed to the tuple.
Tuple!(int, int) myTuple; myTuple.item1 = 42; myTuple.item2 = 128;
See Implementation
A tuple which has automatically generated member names. The names are in order of what was passed to the tuple.