// 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";} );