Top "Partial-specialization" questions

Partial template specialization is a particular form of class template specialization.

C++ function template partial specialization?

I know that the below code is a partial specialization of a class: template <typename T1, typename T2> …

c++ templates template-specialization partial-specialization
pointers as template parameters?

I have a container class, we'll call it template <class T> CVector { ... } I want to do something different …

c++ templates partial-specialization
Why function template cannot be partially specialized?

I know the language specification forbids partial specialization of function template. I would like to know the rationale why it …

c++ language-design template-specialization partial-specialization function-templates
C++ template partial specialization - specializing one member function only

Bumped into another templates problem: The problem: I want to partially specialize a container-class (foo) for the case that the …

c++ templates partial-specialization
(Partially) specializing a non-type template parameter of dependent type

Maybe I'm tired, but I'm stuck with this simple partial specialization, which doesn't work because non-type template argument specializes a …

c++ templates partial-specialization non-type
Tag dispatch versus static methods on partially specialised classes

Suppose I want to write a generic function void f<T>(), which does one thing if T is …

c++ metaprogramming generic-programming partial-specialization
Partial specialisation of member function with non-type parameter

I have a template class with both a type and a non-type template parameter. I want to specialize a member …

c++ templates template-specialization partial-specialization
Partial specialization for pointers, c++

How to make partial specialization of the class GList so that it is possible to store pointers of I (i.…

c++ templates pointers partial-specialization