I was experimenting with C++0x variadic templates when I stumbled upon this issue:

template < typename ...Args >
struct identities
{
    typedef Args type; //compile error: "parameter packs not expanded with '...'
};

//The following code just shows an example of potential use, but has no relation
//with what I am actually trying to achieve.
template < typename T >
struct convert_in_tuple
{
    typedef std::tuple< typename T::type... > type;
};

typedef convert_in_tuple< identities< int, float > >::type int_float_tuple;

GCC 4.5.0 gives me an error when I try to typedef the template parameters pack.

Basically, I would like to "store" the parameters pack in a typedef, without unpacking it. Is it possible? If not, is there some reason why this is not allowed?

link|improve this question

Whenever I hear "I was experimenting with C++0x" I duck under the nearest table. – g33kz0r Apr 11 '11 at 21:35
feedback

2 Answers

up vote 8 down vote accepted

Another approach, which is slightly more generic than Ben's, is as follows:

#include <tuple>

template <typename... Args>
struct variadic_typedef
{
    // this single type represents a collection of types,
    // as the template arguments it took to define it
};

template <typename... Args>
struct convert_in_tuple
{
    // base case, nothing special,
    // just use the arguments directly
    // however they need to be used
    typedef std::tuple<Args...> type;
};

template <typename... Args>
struct convert_in_tuple<variadic_typedef<Args...>>
{
    // expand the variadic_typedef back into
    // its arguments, via specialization
    // (doesn't rely on functionality to be provided
    // by the variadic_typedef struct itself, generic)
    typedef typename convert_in_tuple<Args...>::type type;
};

typedef variadic_typedef<int, float> myTypes;
typedef convert_in_tuple<myTypes>::type int_float_tuple;

int main()
{}
link|improve this answer
Nice, very similar to what the OP originally tried. – Ben Voigt Jan 15 '11 at 0:31
Very good workaround, I did not think about using partial template specialization! – Luc Touraille Jan 15 '11 at 20:13
@GMan: quick question ... this was helpful, but should the partially specialized version actually be typedef typename convert_in_tuple<Args...>::type type;, or does that not matter? – Jason Aug 20 '11 at 15:10
@Jason: That's correct. I'm surprised my answer's gotten by so long without a keen eye noticing. :) – GManNickG Aug 20 '11 at 15:31
Baller solution! I love the madness that is C++. – rodarmor Feb 26 at 0:07
feedback

I think the reason it's not allowed is that it would be messy, and you can work around it. You need to use dependency inversion and make the struct storing the parameter pack into a factory template able to apply that parameter pack to another template.

Something along the lines of:

template < typename ...Args >
struct identities
{
    template < template<typename ...> class T >
    struct apply
    {
        typedef T<Args...> type;
    };
};

template < template<template<typename ...> class> class T >
struct convert_in_tuple
{
    typedef typename T<std::tuple>::type type;
};

typedef convert_in_tuple< identities< int, float >::apply >::type int_float_tuple;
link|improve this answer
I tried your code on GCC 4.5, you just need to change typename T in class T and change the convert_in_tuple parameter to be a template template template parameter: template < template< template < typename ... > class > class T > struct convert_in_tuple {...} (!). – Luc Touraille Jan 14 '11 at 14:51
1  
@Luc: Edited to be a template template template parameter. Replacing typename with class feels a little dubious, since the draft says "There is no semantic difference between class and template in a template-parameter.", could you try this new code? – Ben Voigt Jan 14 '11 at 14:53
I can't find it in the standard, but I think I remember that for template template parameters you need to use class and not typename (because a template type is inevitably a class and not any type). – Luc Touraille Jan 14 '11 at 15:01
@Luc: Got it to compile in gcc 4.5.2 in a VM, thanks for the pointers. Now struggling to get copy+paste out of the VM to work... – Ben Voigt Jan 14 '11 at 15:10
Indeed, the standard says in §14.1.2 that there is no difference between class and typename, but just above (in §14.1.1), the syntax only allows the class keyword in template template parameter declaration. Even though this can seem inconsistent, I think the rationale is, like I said before, that a template template parameter can't be any type (e.g. it can't be int or bool), so perhaps the committee decided that the use of typename would be misleading. Anyway, let's get back to the subject :)! – Luc Touraille Jan 14 '11 at 15:35
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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