只需定义两个辅助元函数来获取I
和T
:
template<class> struct GetFirst;
template<int I, class T> struct GetFirst<MyPair<I, T>> {
static constexpr int value = I;
};
template<class> struct GetSecond;
template<int I, class T> struct GetSecond<MyPair<I, T>> {
using type = T;
};
template<class... MyPairs>
struct MyStruct {
std::array<int, sizeof...(MyPairs)> arr{GetFirst<MyPairs>::value...};
using Tuple = std::tuple<typename GetSecond<MyPairs>::type...>;
};
//////////////////////////////////////////////////
using S = MyStruct<MyPair<1, MA>, MyPair<2, MB>, MyPair<3, MC>>;
static_assert(std::is_same_v<S::Tuple, std::tuple<MA, MB, MC>>);
assert((S{}.arr == std::array{1, 2, 3}));
您不能在可变参数模板中混合类型和非类型参数,因此不可能有
MyStruct<1, MA, 2, MB, 3, MC, ...>
没有包装(int, Type)
成一个类型。
正如JeJo在下面的评论中提到的,两个元功能可以合并为一个:
template<class> struct MyPairTraits;
template<int I, class T> struct MyPairTraits<MyPair<I, T>> {
static constexpr int i = I;
using Type = T;
};