Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
5answers
330 views

Circumventing template specialization

Suppose I am a user of a Certain Template Library (CTL) which defines a template, named, say, Hector template <class T> class Hector {...}; And in its documentation it gives many guarantees ...
15
votes
2answers
410 views

Is it possible to specialize a template using a member enum?

struct Bar { enum { Special = 4 }; }; template<class T, int K> struct Foo {}; template<class T> struct Foo<T,T::Special> {}; Usage: Foo<Bar> aa; fails to compile using ...
14
votes
1answer
168 views

Where should I define operator >> for my specialization of std::pair?

Consider the following program: #include <iostream> #include <iterator> #include <vector> #include <utility> using namespace std; //just for convenience, illustration only ...
13
votes
1answer
143 views

Good practices regarding template specialization and inheritance

Template specialization does not take into account inheritance hierarchy. For example, if I specialize a template for Base and instantiate it with Derived, the specialization will not be chosen (see ...
13
votes
2answers
218 views

Is it OK to inject a specialization into the std namespace?

In this article on defining your own extensions to ::std::error_code the author recommends this code: namespace std { template <> struct is_error_code_enum<http_error> : public ...
12
votes
2answers
217 views

Conversion operator template specialization

Here's a largely academic exercise in understanding conversion operators, templates and template specializations. The conversion operator template in the following code works for int, float, and ...
11
votes
1answer
191 views

C++ templates specialization syntax

In C++ Primer Plus (2001, Czech Translation) I have found these different template specialization syntax: function template template <typename T> void foo(T); specialization syntax void ...
11
votes
1answer
213 views

Template specialization with variadic templates

template <size_t size, typename ...Params> void doStuff(Params...) { } template <> void doStuff<size_t(1), int, bool>(int, bool) { } int main(int, char**) { ...
11
votes
5answers
163 views

How to specialize Iterator by its value type, in C++?

Is it possible to specialize an Iterator template parameter by its value_type? I have a function with the following prototype. template<typename InputIterator> void f(InputIterator first, ...
10
votes
1answer
126 views

resolution of c++template specification and overload

I've read the Why Not Specialize Function Templates and after experiment a little bit, I found an interesting thing. Here go the main.cxx: // main.cxx #include <iostream> // Declarations /* ...
10
votes
4answers
308 views

Eliminating recursive template instantiation in C++

I want to define a macro that can be invoked in different places (at file scope) in order to create functions that do something. (In the example below the functions just print a message, but of ...
9
votes
5answers
105 views

What is the best way to create a specialization-only function template?

Is there a better way to do the following? #include <iostream> template <typename T> T Bar(); template <> int Bar<int>() { return 3; } // Potentially other specialisations ...
9
votes
5answers
1k views

C++ Template Specialization with Constant Value

Is there a straightforward way for defining a partial specialization of a C++ template class given a numerical constant for one of the template parameters? I'm trying to create special constructors ...
9
votes
4answers
180 views

Class template specializations with shared functionality

I'm writing a simple maths library with a template vector type: template<typename T, size_t N> class Vector { public: Vector<T, N> &operator+=(Vector<T, N> const ...
8
votes
3answers
117 views

c++ function template specialisation

Given this code: class X { public: template< typename T > void func( const T & v ); }; template<> void X::func< int >( const int & v ) { } template<> void ...
8
votes
3answers
235 views

Java Generics, support “Specialization”? Conceptual similarities to C++ Templates?

I know quite a bit how to use C++-Templates -- not an expert, mind you. With Java Generics (and Scala, for that matter), I have my diffuculties. Maybe, because I try to translate my C++ knowledge to ...
8
votes
1answer
627 views

c++ template specialization - linker error multiple definitions

My third question here today ;-), but I am really new to c++ template programming and operator overloading. I am trying the following: terminallog.hh //snipped code class Terminallog { public: ...
8
votes
3answers
269 views

Specializing function template for reference types

Why is the output of this code : #include <iostream> template<typename T> void f(T param) { std::cout << "General" << std::endl ; } template<> void f(int& ...
8
votes
2answers
115 views

Call the unspecialized version of a function when specializing it in C++?

Say I have a templated class: template <typename T> class foo { void do_someting(T obj) { // do something generic... } }; and I want to specialize do_something, but within it I want ...
7
votes
1answer
112 views

Specialization that is itself a template

I have a template class that I have some specializations for. But the next specialization is a template itself. How do you specify this: template<typename T> class Action { public: void ...
7
votes
3answers
212 views

Template partial specialization for __stdcall function pointer

typedef bool (*my_function_f)(int, double); typedef bool (__stdcall *my_function_f2)(int, double); // ^^^^^^^^^ template<class F> class TFunction; template<class R, class T0, ...
6
votes
1answer
117 views

Partial template specialization ambiguity

I cant see why the statement in main is ambiguous. template<class T, class U, int I> struct X { void f() { cout << "Primary template" << endl; } }; template<class T, int I> ...
6
votes
2answers
108 views

Is this textbook wrong? Specialising some member functions but not others

I'm reading Vandevoorde and Josuttis's "C++ Templates The Complete Guide" (which seems pretty good, by the way). This claim (section 3.3) seems to be wrong and is not in the published errata: If ...
6
votes
2answers
119 views

Code duplication and template specialization (when the specialized function has different return types)

I am creating a templated class D<N>, with a method (operator(), in this case) that returns different types, depending on the value of N. I could only make this work by creating two separate ...
6
votes
2answers
300 views

Why function template cannot be partially specialized?

I know the langauge specification forbids partial specialization of function template. I would like to know the rationale why it forbids it? Are they not useful? template<typename T, typename ...
6
votes
2answers
311 views

How-to specialize template method in subclass(c++)?

I'm trying to specialize a template method of non-template class in its subclass: // .h file class MyWriter { public: template<typename T> void test(const T & val) { ...
6
votes
5answers
672 views

C++ template nontype parameter arithmetic

I am trying to specialize template the following way: template<size_t _1,size_t _2> // workaround: bool consecutive = (_1 == _2 - 1)> struct integral_index_ {}; ... template<size_t _1> ...
6
votes
1answer
1k views

Doxygen for C++ template class member specialization

When I write class templates, and need to fully-specialize members of those classes, Doxygen doesn't recognize the specialization - it documents only the generic definition, or (if there are only ...
6
votes
3answers
1k views

Declaration of template class member specialization

When I specialize a (static) member function/constant in a template class, I'm confused as to where the declaration is meant to go. Here's an example of what I what to do - yoinked directly from ...
5
votes
3answers
82 views

Overriding a templated function with a polymorphic one

If I have template<class T> TalkyBuffer& operator<<(T const &object) { // Template ... } TalkyBuffer& operator<<(TalkySerialisable const &object); // Override and ...
5
votes
1answer
154 views

template specialization for all subclasses

I would like to define a C++ template specialization that applies to all subclasses of a given base class. Is this possible? In particular, I'd like to do this for STL's hash<>. hash<> is ...
5
votes
4answers
96 views

How to specialize member of template class with template template parameter

I have a template class with an int and a template template parameter. Now I want to specialize a member function: template <int I> class Default{}; template <int N = 0, template<int> ...
5
votes
2answers
126 views

Template Specialization VS Function Overloading

A textbook I have notes that you can provide your own implementation for standard library functions like swap(x,y) via template specialization for function overloading. This would be useful for any ...
5
votes
4answers
153 views

Why don't I have to define the same members when I do total specialization of a class template in C++?

I'm very surprised to find that the following compiles: #include <iostream> using namespace std; template<typename T> class SomeCls { public: void UseT(T t) { cout << "UseT" ...
5
votes
1answer
294 views

Specializing Template Constructor Of Template Class

My brain has melted due to several weeks of 14-hour days. I have a template class, and I'm trying to write a template convert constructor for this class, and specialize that constructor. The ...
5
votes
2answers
180 views

SFINAE: some failures more equal than others?

I'm trying to use SFINAE to distinguish a class that has a member called 'name'. I set things up in what seems to be the standard pattern but it's not working -- instead of silently ignoring the ...
5
votes
4answers
1k views

Function template specialization importance and necessity

I read C++ Primer, and it says function template specialization is an advanced topic, but I am totally lost. Can anybody offer an example why function template specialization is important and ...
5
votes
2answers
326 views

Is it possible to access values of non-type template parameters in specialized template class?

Is it possible to access values of non-type template parameters in specialized template class? If I have template class with specialization: template <int major, int minor> struct A { ...
5
votes
5answers
2k views

Do template specializations require template<> syntax?

I have a visitor class resembling this: struct Visitor { template <typename T> void operator()(T t) { ... } void operator()(bool b) { ... } }; ...
4
votes
2answers
81 views

C++: partial specialization of template template classes

The following code: using namespace std; template <typename X> class Goo {}; template <typename X> class Hoo {}; template <class A, template <typename> class B = Goo > ...
4
votes
2answers
122 views

Can I specialize a class template with an alias template?

Here's a simple example: class bar {}; template <typename> class foo {}; template <> using foo<int> = bar; Is this allowed?
4
votes
4answers
117 views

template specialization with multiple template parameters

Say I have this: template<typename T, int X> class foo { public: void set(const T &t); }; template<typename T, int X> void foo::set<T, X>(const T &t) { int s = X; // ...
4
votes
2answers
71 views

syntax doubt for specializing function templates

Suppose I have a function template where the type parameter is used as a return type only: template <typename T> T foo() { return whatever; } Then what is the correct syntax to specialize ...
4
votes
4answers
145 views

strange c++ template method specialisation issue

I've come across a strange problem with method specialisation. Given this code... #include <string> class X { public: template< typename T > void set( T v ); }; ...
4
votes
3answers
207 views

Partial Specialization of tuple contents with variadic arguments

Currently, I'm trying to get some code to react differently to different types. This isn't the exact code, but it gets the message across. template<class A, class B> struct alpha { enum { ...
4
votes
2answers
147 views

Overloaded function template never called

I love templates, at least I would if I would understand them ;-). I implemented an overloaded operator using templates. I am now trying to specialise the function calls. Here is what I do: class ...
4
votes
2answers
269 views

function template specialization compile error

##A.hh template<class T> void func(T t) {} template<> void func<int>(int t) {} void func2(); ##A.cpp void func2() {} ##main.cpp func("hello"); func(int()); The error I get ...
4
votes
1answer
7k views

Function template specialization format

What is the reason for the second brackets <> in the following function template: template<> void doh::operator()<>(int i) This came up in SO question where it was suggested that ...
3
votes
2answers
61 views

Specialisation of function template in another class/namespace?

NOTE: This question is only loosely related to tinyxml, however including details like that may help illustrate the concept better. I have written a function template that will iterate through a ...
3
votes
3answers
71 views

Template Specialization for basic POD only

Is there a subtle trick for template specialization so that I can apply one specialization to basic POD (when I say basic POD I don't particularly want struct POD (but I will take that)). ...

1 2 3 4