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;
```

Reply via email to