I saw a blog post which used non-type variadic templates (currently not supported by gcc, only by clang).
template <class T, size_t... Dimensions>
struct MultiDimArray { /* ... */ };
The example in the post compiles fine but I failed to get it to work with function templates.
Can anyone help figuring out the correct syntax (if such exists)?
int max(int n) { return n; } // end condition
template <int... N> // replacing int... with typename... works
int max(int n, N... rest) // !! error: unknown type name 'N'
{
int tmp = max(rest...);
return n < tmp? tmp : n;
}
#include <iostream>
int main()
{
std::cout << max(3, 1, 4, 2, 5, 0) << std::endl;
}
maxalready exists in the standard library... but I'm not entirely sure. – Kerrek SB Oct 24 '11 at 15:03maxisn't the point it's just an example. – Motti Oct 24 '11 at 15:20max(3,1,4,foo(),5,bar())as opposed tomax<3,1,4,2,5,6>()) that takes an arbitrary number of parameters, all of the same type? And which returns the maximum? – Aaron McDaid Feb 1 at 1:35