All Questions
1 question
0
votes
1
answer
237
views
Does std::variant provide functionality similar to boost::variant<>::types?
boost::variant exposes its list of variant types via boost::variant<>::types, which can be conveniently used with boost::mpl::for_each. std::variant is missing such a member.
I see std::...