Template Struct is_specialization
Defined in File type_traits.hpp
Base Type
public std::false_type
-
template<class T, template<class...> class TemplateT>
struct is_specialization : public std::false_type Tests whether or not a type is a specialization of a template. i.e.
is_specialization<std::atomic<int>, std::atomic> == true
- Template Parameters
T – The type to test
TemplateT – The base template to test against