#include <is_specialization_of.h>
Partial specialization for the case where T
is an instance of Template<Args...>
.
More...
Partial specialization for the case where T
is an instance of Template<Args...>
.
This specialization checks if T
matches the form Template<Args...>
, meaning T
is a specialization of the template class Template
with specific template parameters Args...
.
Template | The template class that T is expected to be an instance of. |
Args | The actual template parameters used in the instantiation of Template . |