I\'m basically trying to do what was discussed in Template specialization of a single method from a templated class except that my TClass has multiple template Parameters li
You can fully specialize class method but as far as I remember you can't partially specialize it.
You can try partial specialization for the whole class but this will probably involve a lot of duplication.