Closed
Description
"tuple struct" is a pretty terrible name. I propose "named tuple". This would also change the syntax from
struct Foo(....)
to
tuple Foo(...)
.
Only reason is because you can't have impls or traits on typedefs. If you could, this feature could be reduced to type Foo = (....)
, which would be ideal I think.