NamedTuple

A tuple, essentially a struct constructed from its template arguments.

struct NamedTuple (
Args...
) if (
Args.length > 0
)

Examples

NamedTuple!(int, "a", int, "b") myTuple;
            myTuple.a = 42;
            myTuple.b = 128;
        

Meta