Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
1answer
155 views

What can and can't I specialize in the std namespace?

Users are allowed to add explicit specializations to the std namespace. However, there are a few templates that I am explicitly forbidden from specializing. What templates can and can't I specialize? ...
11
votes
2answers
411 views

Can a class template explicit specialization also declare something else?

It would be nice if this code were invalid. But it's conceptually sound, and GCC accepts it although Comeau doesn't: template< typename > struct t; template<> struct t< int > {} r; ...
10
votes
3answers
202 views

Difference between explicit specialization and regular functions when overloading a template function

I'm on a roll today. Here goes n00b question number 7: What's the difference between explicit specialization and just regular functions when you try to overload a template function? What's the ...
5
votes
6answers
163 views

How should I do this explicit specialization?

Is following design possible?: template <typename T> class Test{ public: template <typename Z> void doSomething(); //rest of things private: T obj; //some things }; Now if ...
5
votes
6answers
247 views

Selecting an explicit specialization of a class based on a derived type

Hi I'm having problems selecting the correct version of a templated class which has an explicit specialization. I'm wanting to select a specialization using a derived class of the class used to ...
5
votes
2answers
337 views

How to provide a explicit specialization to only one method in a C++ template class?

I have a template class that looks something like this: template<class T> class C { void A(); void B(); // Other stuff }; template<class T> void C<T>::A() { /* ...
4
votes
2answers
174 views

explicit member specialization

g++ 3.4.5 accepts this code: template <typename T> struct A { static const char* const str; }; struct B {}; typedef A<B> C; template<> const char* const C::str = "B"; // ...
3
votes
2answers
54 views

std::unordered_set<Foo> as member of class Foo

I'm writing a class that has an unordered_set of its own type as a member. Therefore I need to write a specialization for hash<Foo>. This specialization needs to be defined after Foo is ...
3
votes
6answers
90 views

Template class specialized inside and outside lib

Consider this synthetic example. I have two native C++ projects in my Visual Studio 2010 solution. One is console exe and another is lib. There are two files in lib: // TImage.h template<class ...
2
votes
3answers
297 views

Why is this C++ explicit template specialization code illegal?

(Note: I know how it is illegal, I'm looking for the reason that the language make it so.) template<class c> void Foo(); // Note: no generic version, here or anywhere. int main(){ ...
2
votes
3answers
289 views

Function Templates - Explicit specialisation vs Global Functions (C++)

I know that Function Templates are used so as to make the functions portable and so that they could be used with any data types. Also Explicit Specialization of templates is done if we have a more ...
2
votes
3answers
367 views

How to specialize member functions based on class template argument

What the question says. In addition, is it possible to do this inline? Here is a small example just to give an idea... template<typename T> class Foo { public: Foo() :z(0.0) {} void do( ...
1
vote
2answers
188 views

Explicit specialization, C++

How to write explicit specialization for object Car<T> in virtual method clear()? template <class U> class List { public: virtual void clear(); }; template <class ...
1
vote
2answers
111 views

How to do one explicit specialization for multiple types?

Considering a template function like below how is it possible to do explicitly specialize one version of function for multiple types: template <typename T> void doSomething(){ //whatever } ...
1
vote
1answer
136 views

Normal function not overwriting template function

I have to use an external library, but am getting a "multiple definition error" from following template function and its explicit specialization, if it gets called with a std::string. template ...
1
vote
3answers
241 views

Explicit Instantiation

This was motivated by this article (page 5) template<class T> T const &f(T const &a, T const &b){ return (a > b ? a : b); } template int const &f<int>(int const ...
1
vote
2answers
137 views

Way to set up class template with explicit instantiations

After asking this question and reading up a lot on templates, I am wondering whether the following setup for a class template makes sense. I have a class template called ResourceManager that will ...
0
votes
1answer
157 views

Why do I get missing symbols for an explicit template specialization in a static library?

If I compile the following code: // // g++ static.cpp -o static.o // ar rcs libstatic.a static.o // #include <iostream> template < typename T > struct TemplatedClass { void Test( T ...