Is there a decomposition for tuples and other data structures?
For example, ``` auto t = tuple(1, "2"); auto (x, y) = t; // or auto (x, y) = t.expand; ```
Vindex via Digitalmars-d-learn Wed, 13 Oct 2021 13:05:50 -0700
Is there a decomposition for tuples and other data structures?
For example, ``` auto t = tuple(1, "2"); auto (x, y) = t; // or auto (x, y) = t.expand; ```