Имеет член шаблона-вычет шаблона шаблона
Допустим, у меня есть два следующих тестовых класса:
struct TestYes {
using type = void;
template <typename... T>
using test = void;
};
struct TestNo { };
И я хочу определить, есть ли у них этот член шаблона test
.
Для члена type
,
template <typename, typename = void>
struct has_type_impl {
using type = std::false_type;
};
template <typename T>
struct has_type_impl<T, typename T::type> {
using type = std::true_type;
};
template <typename T>
using has_type = typename has_type_impl<T>::type;
Работает отлично:
static_assert( has_type<TestYes>::value, ""); // OK
static_assert(!has_type<TestNo>::value, ""); // OK
Но эквивалент для члена шаблона test
:
template <typename, template <typename...> class = std::tuple>
struct has_test_impl {
using type = std::false_type;
};
template <typename T>
struct has_test_impl<T, T::template test> {
using type = std::true_type;
};
template <typename T>
using has_test = typename has_test_impl<T>::type;
Не
static_assert( has_test<TestYes>::value, "");
Я знаю, что могу использовать SFINAE, например:
template <typename T>
struct has_test_impl {
private:
using yes = std::true_type;
using no = std::false_type;
template <typename U, typename... Args>
static auto foo(int) -> decltype(std::declval<typename U::template test<Args...>>(), yes());
template <typename> static no foo(...);
public:
using type = decltype(foo<T>(0));
};
template <typename T>
using has_test = typename has_test_impl<T>::type;
Но мне интересно, почему компилятор правильно вычитает частичную специализацию has_type_impl
, пока она остается на первое определение has_test_impl
.