Аргументы шаблона не выбираются слева направо.Да, 0
более специализирован, чем n
, но std::tuple<Head, Tail...>
более специализирован, чем T
.Вы можете добавить дополнительную специализацию, которая является наиболее специализированной для обоих аргументов:
#include <tuple>
template<typename A, typename B>
struct front_helper;
template<typename... A, typename... B>
struct front_helper<std::tuple<A...>, std::tuple<B...>> {
typedef std::tuple<A..., B...> type;
};
template<std::size_t, typename>
struct front;
template<>
struct front<0, std::tuple<>> {
typedef std::tuple<> type;
};
template<typename Head, typename... Tail>
struct front<0, std::tuple<Head, Tail...>> {
typedef std::tuple<> type;
};
template<std::size_t n, typename Head, typename... Tail>
struct front<n, std::tuple<Head, Tail...>> {
typedef typename front_helper<std::tuple<Head>, typename front<n-1, std::tuple<Tail...>>::type>::type type;
};
void x0(front<0, std::tuple<int, float, double, long>>::type) { }
void x1(front<1, std::tuple<int, float, double, long>>::type) { }
void x2(front<2, std::tuple<int, float, double, long>>::type) { }
void x3(front<3, std::tuple<int, float, double, long>>::type) { }
void x4(front<4, std::tuple<int, float, double, long>>::type) { }
$ g++ test.cc -c -std=c++0x && nm -C test.o
00000000 b .bss
00000000 d .data
00000000 t .text
00000000 T x0(std::tuple<>)
00000005 T x1(std::tuple<int>)
0000000a T x2(std::tuple<int, float>)
0000000f T x3(std::tuple<int, float, double>)
00000014 T x4(std::tuple<int, float, double, long>)
00000000 b std::(anonymous namespace)::ignore