top | item 47076850

(no title)

maleldil | 10 days ago

These are not proper sum types, since you're limited to one variant per type.

discuss

order

sebtron|10 days ago

I am not sure what you mean, you can definitely have e.g. an

    std::variant<int, std::string, bool>
Which is a sum of those three types.