...

/

Template Parameter: Variadic Templates

Template Parameter: Variadic Templates

In this lesson, we will learn about one of the powerful new tools of C++11: variadic templates.

We'll cover the following...

A variadic template is a template with an arbitrary number of parameters.

template <typename ... Args>
void variadicTemplate(Args ... args){ . . . . }

Parameter pack

...