如果这是可能的,可以在不递归的情况下索引可变参数模板参数包。但是,GCC拒绝在这里接受我的部分专业化:
template <int I, typename List>
struct element_impl;
template <typename... TL, int... IL, typename T, int I, typename... TR, int... IR>
struct element_impl<I, typelist<pair<TL,IL>..., pair<T,I>, pair<TR,IR>...>> {
typedef T type;
};
prog.cpp:在'
element<0, typelist<int, double, char, float, long int> >
'的实例化中:
prog.cpp:52:34:从这里实例化
prog.cpp:47:79:错误:不完整类型'struct element_impl<0, typelist<pair<int, 0>, pair<double, 1>, pair<char, 2>, pair<float, 3>, pair<long int, 4> >
'的无效使用
GCC 有问题,还是我忽略了可变参数模板的一些限制?