In C ++ 11, is it possible to have two variation patterns for one function?
If not, is there a trick to writing something like this:
template <class... Types, class... Args> void f(const std::tuple<Types...>& t, Args&&... args)
c ++ c ++ 11 templates variadic-functions variadic-templates
Vincent
source share