|
|
|
|
|
by ivmaykov
1192 days ago
|
|
You would probably use std::variant in C++ if you want tagged unions. So you could have a struct or class with one std::variant field and some methods which can match on the type of the variant. But it would be kind of clunky. |
|