Tagged Questions

5
votes
5answers
190 views

C++ template partial specialization - specializing one member function only

Hi everybody, Bumped into another templates problem: The problem: I want to partially specialize a container-class (foo) for the case that the objects are pointers, and i want to …
0
votes
3answers
75 views

C++ template specialization with <int&> not picking up an int

Hi, I have the following code: template <typename T> LuaCall& operator>>(T) { BOOST_STATIC_ASSERT(sizeof(T) == 0); } template <> LuaCall& operator>&gt …
0
votes
3answers
69 views

Templated parameter for a template specialisation?

Hi I've got a static member of a templated class that I want defined for a sub group of classes that are templated ie: template <typename T> class FooT { private: static i …
4
votes
3answers
254 views

Template Partial Specialization - any real-world example?

I am pondering about partial specialization. While I understand the idea, I haven't seen any real-world usage of this technique. Full specialization is used in many places in STL s …
2
votes
5answers
180 views

pointers as template parameters?

I have a container class, we'll call it template <class T> CVector { ... } I want to do something different with this class when T is a pointer type, e.g. something along …
0
votes
3answers
322 views

How to partially specialize a class template for all derived types?

I want to partially specialize an existing template that I cannot change (std::tr1::hash) for a base class and all derived classes. The reason is that I'm using the curiously-recur …
2
votes
4answers
800 views

How to do template specialization in C#

How would you do specialization in C#? I'll pose a problem. You have a template type, you have no idea what it is. But you do know if its derived from XYZ you want to call .alterna …
1
vote
1answer
243 views

partial template specialization for dynamic dispatch

I am attempting to write a dynamic dispatcher for a function that's templated on integer values (not on types). While I could either write a code generator or use a big macro chai …
9
votes
6answers
305 views

What are some other languages that support “partial specialization”?

Partial template specialization is one of the most important concepts for generic programming in C++. For example: to implement a generic swap function: template <typename T&gt …
4
votes
1answer
3k views

“invalid use of incomplete type” error with partial template specialization

The following code: template <typename S, typename T> struct foo { void bar(); }; template <typename T> void foo <int, T>::bar() { } gives me the error in …