Construct a variadic template of unsigned int recursively
- by Vincent
I need a tricky thing in a C++ 2011 code.
Currently, I have a metafunction of this kind :
template<unsigned int N, unsigned int M>
static constexpr unsigned int myFunction()
This function can generate number based on N and M.
I would like to write a metafunction with input N and M, and that will recursively construct a variadic template by decrementing M. For example, by calling this function with M = 3, It will construct a variadic template called List equal to :
List... = myFunction<N, 3>, myFunction<N, 2>, myFunction<N, 1>, myFunction<N, 0>
How to do that (if it is possible of course) ?