I'm quite new to the variadic template of C++2011 and I would like to know if a trick exists to do the following thing :
template<typename T, unsigned int... TDIM> class VariadicTest
{
public:
static const unsigned int order_const = sizeof...(TDIM);
static const unsigned int size_const = // TDIM1*TDIM2*TDIM3...
static const unsigned int dim_const[order_const] = // {TDIM1, TDIM2, TDIM3...}
// if not possible :
// dim_const[64] = {TDIM1, TDIM2, TDIM3, 0, ..., 0}
};
Is there any "trick" to do a such thing ?
Thank you very much.
size_constshould be simple (create aconstexprvariadic template function that returns the multiplication of the head times the tail --or the head value if no tail). The array initialization is the tricky part... – David Rodríguez - dribeas Aug 4 '12 at 0:40