Is is possible to get a named tuple from a struct type?
struct S { int foo; string bar; }S s;
S.tupleof t; // S.tupleof is a tuple type, as opposed to s.tupleof,// which yields a tuple instancet[0] = 1;t.bar = "2";
tuple StructLike{int foo;string bar;}
StructLike t;t[0] = 1;t.bar = "2";