Is it possible to have a function with a variadic number of non-template-type parameters?
For example, a function that takes an arbitrary number of strings
std::string concat_all() { retu ""; }
std::string concat_all(std::string const& s,
std::string const&... t) // won't compile
{
retu s + concat_all(t...);
}
