I\'m currently trying to get my head around some of the things I can do with variadic template support. Let\'s say I have a function like this -
template <
This should work:
void foo(int); template void foo(int first, Args... more) { foo(first); foo(std::forward(more)...); }