// Client visitor code
match(
thingy,
[](const PurpleThingy& ) {std::cout << "purple thingy\n";},
[](const LittleThingy& ) {std::cout << "little thingy\n";},
[](const auto& ) {std::cout << "any other type\n";}
);
Working example:
https://coliru.stacked-crooked.com/a/dfed39bc7fcdfb01No comments yet.