Expansion of a parameter pack

suggest change

The pattern parameter_pack ... is expanded into a list of comma-separated substitutions of parameter_pack with each one of its parameters

template<class T> // Base of recursion
void variadic_printer(T last_argument) {
    std::cout << last_argument;
}

template<class T, class ...Args> 
void variadic_printer(T first_argument, Args... other_arguments) {
  std::cout << first_argument << "\n";
  variadic_printer(other_arguments...); // Parameter pack expansion
}

The code above invoked with variadic_printer(1, 2, 3, "hello"); prints

1
2
3
hello

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Parameter packs:
* Expansion of a parameter pack

Table Of Contents
8 Arrays
11 Loops
39 Streams
51 Unions
56 Lambdas
60 SFINAE
62 RAII
67 Sorting
84 RTTI
87 Scopes
104 Profiling
107 Recursion
116 Parameter packs
117 Iteration
125 Alignment
134 Semaphore
136 Debugging
139 Mutexes
142 decltype