Tuple

A tuple which has automatically generated member names. The names are in order of what was passed to the tuple.

struct Tuple (
Args...
) if (
Args.length > 0
) {}

Examples

Tuple!(int, int) myTuple;
            myTuple.item1 = 42;
            myTuple.item2 = 128;
        

Meta