herhangi karşılaştırıcı, hasher, anahtar eşit karşılaştırıcı ve allocator izin vermek istediğinizde Kısmi uzmanlaşma: Eğer kontrol etmek istiyorsanız
template<class Comp, class Alloc>
struct check<std::map<std::string, std::string, Comp, Alloc>>{
static const bool value = true;
};
template<class Hash, class KeyEq, class Alloc>
struct check<std::unordered_map<std::string, std::string, Hash, KeyEq, Alloc>>{
static const bool value = true;
};
T
, bu türlerin varsayılan sürümünü (yalnızca map<A,B>
ve map<A,B,my_comp>
değil, şablon bağımsız değişkenlerini atlayabilir ve açık özelleştirmeyle birlikte kullanabilirsiniz:
template<>
struct check<std::map<std::string, std::string>>{
static const bool value = true;
};
template<>
struct check<std::unordered_map<std::string, std::string>>{
static const bool value = true;
};
bunu bir std::map
veya herhangi bir tuşa/değer kombinasyonu std::unordered_map
(ve karşılaştırıcı vb/hasher /) ise genellikle kontrol etmek istiyorum Ve eğer here alınan olarak tamamen jenerik gidebilir:
#include <type_traits>
template < template <typename...> class Template, typename T >
struct is_specialization_of : std::false_type {};
template < template <typename...> class Template, typename... Args >
struct is_specialization_of< Template, Template<Args...> > : std::true_type {};
template<class A, class B>
struct or_ : std::integral_constant<bool, A::value || B::value>{};
template<class T>
struct check
: or_<is_specialization_of<std::map, T>,
is_specialization_of<std::unordered_map, T>>{};