Closed
Description
Discussing how tuples are laid out.
- Is tuple layout equivalent to some corresponding struct? If so, what struct exactly?
- that struct definition might in turn have undefined layout, of course
Some things that might be useful if they were defined:
- Is it possible to inter-convert a
(T, T, ..., T)
tuple with a[T; N]
memory representation?