cmoon::is_specialization
Defined in module
<cmoon.type_traits>
|
(1) |
If the complete type Type is a template specialization of the incomplete type value is true. Otherwise,
its member constant value is false.
For example, std::string is a specialization of std::basic_string.
Helper variable template
template<class Type, template<typename...> class Template>
inline constexpr bool is_specialization_v = is_specialization<Type, Template>::value;