Possible Duplicate:
How do I expand a tuple into variadic template function's arguments?
Currently, I have function of the form :
template<typename Type, typename... List>
void myFunction(Type& x, List&... list);
I also have a tuple :
std::tuple<int, unsigned int, unsigned long long int, int> myTuple;
Is it possible (and if yes, how ?) to pass myTuple
to myFunction
?