C++11 introduced variadic templates

template <typename... Args>
void foo(Args... params) {
    cout << sizeof...(Args) << endl;
}

What are the names of Args and params? I know that one of them (at least?) is called a variadic template pack but which is it? And what is the other called?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

Partially quoting the FDIS, ยง14.5.3:

1 A template parameter pack is a template parameter that accepts zero or more template arguments.

2 A function parameter pack is a function parameter that accepts zero or more function arguments.

3 A parameter pack is either a template parameter pack or a function parameter pack.

4 A pack expansion consists of a pattern and an ellipsis, the instantiation of which produces zero or more instantiations of the pattern in a list.

So in your example,

  • typename... Args is a template parameter pack (and consequently also a parameter pack)
  • Args... params is a function parameter pack (and consequently also a parameter pack)
  • sizeof...(Args) is a pack expansion wherein Args is the pattern (an identifier in this context).
link|improve this answer
1  
And also, typename... Args is a template parameter pack, but it is not a pack expansion. In template<typename ...Args> class A { template<Args... B> class C { }; template<template<Args D> class ...E> class F { }; };, the B is a template parameter pack. The Args ...B is its declaration which is also a pack expansion of the pattern Args B, expanding into a template-parameter-list. template<Args D> class ...E is also a pack expansion of pattern template<Args D> class E. – Johannes Schaub - litb Nov 1 '11 at 20:47
1  
@JohannesSchaub-litb could you post this comment as an answer? It's certainly detailed enough. – Motti Nov 1 '11 at 20:51
can you explain your fourth point i.e pattern thing , I mean how that pattern thing works? and in which part of c++ it works :) – SoulReaper Dec 21 '11 at 11:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.