I want to write a function template that can take variable number of template arguments, and just print out the typeid().name() of the type parameters. I can do something like that using static functions inside class templates as follows :
template<typename...>
struct foo;
template<typename H, typename... T>
struct foo<H, T...> {
static void print() {
std::cout << typeid(H).name() << ", ";
foo<T...>::print();
}
};
template<typename H>
struct foo<H> {
static void print() {
std::cout << typeid(H).name() << "\n";
}
};
int main(void)
{
foo<int, float>::print();
return 0;
}
However, I am not able to do the following :
template<typename H, typename... T>
void print() {
std::cout << typeid(H).name() << ", ";
print<T...>();
}
int main(void)
{
print<int, float>();
return 0;
}
I tried adding the following "base" cases :
template<typename H>
void print();
and
void print();
Neither worked. How do I write such a function template?