Template Struct is_specialization#

Inheritance Relationships#

Base Type#

  • public std::false_type

Struct Documentation#

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