While browsing through gcc's current implementation of new C++11 headers, I stumbled upon "......" token. You can check, that the following code compiles fine [via ideone.com].

template <typename T>
struct X
{ /* ... */ };

template <typename T, typename ... U>
struct X<T(U......)> // this line is the important one
{ /* ... */ };

So, what is the meaning of this token?

edit: Looks like SO trimmed "......" in question title to "...", I did really mean "......" . :)

link|improve this question

80% accept rate
hint: it is ... followed by ... . – Alexandre C. Apr 11 '11 at 18:21
1  
Is it not more like U... followed by ... . Very odd nonetheless. – edA-qa mort-ora-y Apr 11 '11 at 18:26
Note: This can be found in <functional> and <type_traits>, always in the context of a function argument list inside a template parameter. – Potatoswatter Apr 11 '11 at 18:27
only way I found to make it stuck in the title was to put a space inbetween... hope it makes it clearer for the readers. – Matthieu M. Apr 11 '11 at 19:12
@Matthieu M.: Thanks, much better! – Vitus Apr 11 '11 at 19:17
feedback

2 Answers

up vote 27 down vote accepted

Every instance of that oddity is paired with a case of a regular single ellipsis.

  template<typename _Res, typename... _ArgTypes>
    struct _Weak_result_type_impl<_Res(_ArgTypes...)>
    { typedef _Res result_type; };

  template<typename _Res, typename... _ArgTypes>
    struct _Weak_result_type_impl<_Res(_ArgTypes......)>
    { typedef _Res result_type; };

  template<typename _Res, typename... _ArgTypes>
    struct _Weak_result_type_impl<_Res(_ArgTypes...) const>
    { typedef _Res result_type; };

  template<typename _Res, typename... _ArgTypes>
    struct _Weak_result_type_impl<_Res(_ArgTypes......) const>
    { typedef _Res result_type; };

My guess is that the double ellipsis is similar in meaning to _ArgTypes..., ..., i.e. a variadic template expansion followed by a C-style varargs list.

Here's a test supporting that theory… I think we have a new winner for worst pseudo-operator ever.

Edit: This does appear to be conformant. §8.3.5/3 describes one way to form the parameter list as

parameter-declaration-listopt ...opt

So the double-ellipsis is formed by a parameter-declaration-list ending with a parameter pack, followed by another ellipsis.

The comma is purely optional; §8.3.5/4 does say

Where syntactically correct and where “...” is not part of an abstract-declarator, “, ...” is synonymous with “...”.

This is within an abstract-declarator, [edit] but Johannes makes a good point that they are referring to an abstract-declarator within a parameter-declaration. I wonder why they didn't say "part of a parameter-declaration," and why that sentence isn't just an informative note…

Furthermore, va_begin() in <cstdarg> requires a parameter before the varargs list, so the prototype f(...) specifically allowed by C++ is useless. Cross-referencing with C99, it is illegal in plain C. So, this is most bizarre.

Usage note

By request, here is a demonstration of the double ellipsis:

#include <cstdio>
#include <string>

template< typename T >
T const &printf_helper( T const &x )
    { return x; }

char const *printf_helper( std::string const &x )
    { return x.c_str(); }

template< typename ... Req, typename ... Given >
int wrap_printf( int (*fn)( Req... ... ), Given ... args ) {
    return fn( printf_helper( args ) ... );
}

int main() {
    wrap_printf( &std::printf, "Hello %s\n", std::string( "world!" ) );
    wrap_printf( &std::fprintf, stderr, std::string( "Error %d" ), 5 );
}
link|improve this answer
Yes, that's right. T(U..., ...) however compiles fine, too; perhaps they wanted to save some space. :) – Vitus Apr 11 '11 at 18:34
But what would that mean? And how can the compiler tell where _ArgTypes end and some "extra" parameters start? – Bo Persson Apr 11 '11 at 18:35
4  
@Bo Persson: std::is_function's value must be true even if the function is C varargs one and because T(U...) is not match for such function, you need this madness. E.g. int f(int, char, ...) matches T(U......) exactly with T = int, U = {int, char} and the "..." varargs token. – Vitus Apr 11 '11 at 18:45
@Vitus - Ok, thanks I guess. I was just considering a new question "When is this useful?" to earn my first Tubleweed badge. No luck there, obviously. :-) – Bo Persson Apr 11 '11 at 18:52
2  
"This is within an abstract-declarator" -> they mean not part of the abstract declarator of the last parameter of that same parameter type list. E.g void (int...) here, the ... is not part of the abstract-declarator int, hence it is synonymous to void(int, ...). If you would write void(T...) and T is a template parameter pack, ... would be part of the abstract-declarator, and hence it would not be equivalent to void(T, ...). – Johannes Schaub - litb Apr 11 '11 at 20:15
show 6 more comments
feedback

That's the definition of a variadic template. This allows templated methods to take a variable number of arguments.

Here's an example by Douglas Gregor that defines a type-safe printf function:

void printf(const char* s) {
  while (*s) {
    if (*s == '%' && *++s != '%') 
      throw std::runtime_error("invalid format string: missing arguments");
    std::cout << *s++;
  }
}

template<typename T, typename... Args>
void printf(const char* s, const T& value, const Args&... args) {
  while (*s) {
    if (*s == '%' && *++s != '%') {
      std::cout << value;
      return printf(++s, args...);
    }
    std::cout << *s++;
  }
  throw std::runtime_error("extra arguments provided to printf");
}
link|improve this answer
The first ... is, the second however is not (I think) and the fact that the two are concatenated is the true object of the question. – Matthieu M. Apr 11 '11 at 19:19
feedback

Your Answer

 
or
required, but never shown

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