explicit specialization in template class error

my problem is the following, I have a template object, and in this object a method also template, for which I want to make a specialization, only the compiler always returns an error: "a declaration of model containing a list of model parameters can not be followed by an explicit specialization declaration. I would like… Read More explicit specialization in template class error

How to check if an object is an instance of template class of multiple template arguments and that one of said arguments fulfills some condition?

From How to check if an object is an instance of a template class of multiple template arguments in C++? I got the following trait to check whether a type is a particular template instantiation of a templated type of several template arguments: template <typename T1, typename T2> struct A { }; template <typename Type>… Read More How to check if an object is an instance of template class of multiple template arguments and that one of said arguments fulfills some condition?