Aşağıdaki kod parçacığını dikkate alınız anlaşılabilir değildir:benim kısmi şablon uzmanlık şablon parametresi
template<class E>
class vector_expression {};
template<class Tuple>
class vector
: public vector_expression<vector<Tuple>>
{
public:
using value_type = typename Tuple::value_type;
};
template<typename T>
using dynamic_vector = vector<std::vector<T>>;
namespace detail
{
template<class E>
constexpr bool is_vector_expression_v = std::is_base_of_v<vector_expression<std::decay_t<E>>, std::decay_t<E>>;
template<class E>
struct value_type { using type = std::decay_t<E>; };
template<class E>
struct value_type<vector_expression<std::decay_t<E>>> { using type = typename std::decay_t<E>::value_type; };
template<class E>
using value_type_t = typename value_type<E>::type;
}
int main()
{
static_assert(std::is_same<detail::value_type_t<dynamic_vector<double>>, double>::value, "not the same");
return 0;
}
Ben E
bir vector_expression
olduğunda E
belirtilen value_type
olmak value_type_t<E>
istiyorum. Yukarıdaki kod çalışmıyor, E
şablon parametresinin value_type
kısmi uzmanlaşmasında sonuçlanamaz. Kodu nasıl çalıştırabilirim? aslında std::decay<E>::type
olduğu gibi
Gibi [burada] (http://coliru.stacked-crooked.com/a/35a7e10935ac63a0)? –