This is a helper for use with visit that uses standard overload resolution to pick the best overload among a set of lambdas given by the user.
Unfortunately, in C++14 we have to use it with a factory function; please see make_overloaded for details. In C++17 this can be used without the factory in a much simpler way.
This function is not found in the C++ standard library, but is a common extension in the wild.