#include <is_specialization_of.h>
Trait to check if a type T
is a specialization of a given template class Template
.
More...
Trait to check if a type T
is a specialization of a given template class Template
.
The is_specialization_of
trait is a compile-time check to determine if a type T
is a specialization of a particular template class Template
. This trait works with template classes that accept any number of template parameters.
Example usage:
T | The type to be checked. This is the type that you want to determine whether it is a specialization of Template . |
Template | The template class to check against. This can be any template class that accepts one or more template parameters. |