Tagged Questions
26
votes
5answers
336 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
438 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 ...
13
votes
1answer
192 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 ...
12
votes
2answers
279 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
236 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
172 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
129 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
328 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
121 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
183 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
120 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
293 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
119 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
119 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
228 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
137 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
111 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
128 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
325 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
697 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
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
86 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
4answers
110 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
4answers
154 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
324 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
183 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
2answers
334 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
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 ...
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
87 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
4answers
121 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
3answers
242 views
C++ template partial specialization question
I'm having compile time trouble with the following code:
template <typename T,
template <class T, class Allocator = std::allocator<T> > class C>
bool is_in(const ...
4
votes
2answers
286 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
2answers
3k views
Template specialization for enum
Is it possible to specialize a templatized method for enums?
Something like (the invalid code below):
template <typename T>
void f(T value);
template <>
void f<enum T>(T value);
...
3
votes
1answer
33 views
How do i use partial specialization on two parameters
I could swear the syntax is correct. I played around and changed class into typename. Still no go.
How do i write this so the 2nd function template kicks in?
#include <iostream>
...
3
votes
2answers
81 views
c++ function template specialization for known size typedefed array
Please consider the following code:
#include <iostream>
#include <typeinfo>
template< typename Type >
void func( Type var )
{
std::cout << __FUNCTION__ << ...
3
votes
2answers
66 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
77 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)).
...
3
votes
2answers
103 views
Why the difference in syntax between explicit and partial specialization?
Example:
template <typename T, typename U>
struct A {
void Print() {}
};
template <>
void A<int, float>::Print() {} // Okay
template <typename T>
void ...
3
votes
3answers
90 views
c++ template specialization for all subclasses
I need to create a template function like this:
template<typename T>
void foo(T a)
{
if (T is a subclass of class Bar)
do this
else
do something else
}
I can also imagine ...
3
votes
3answers
106 views
friend of specialized template class (C++)
#include <iostream>
using namespace std;
template <typename T>
class test
{
T y;
public:
test(T k) : y(k) {}
friend int a(T& x);
};
template <typename T>
int ...
3
votes
1answer
116 views
Is sizeof… allowed in template arguments for specialization?
I'm trying to do something along the lines of this using GCC 4.7 snapshot:
template <int n, int... xs>
struct foo {
static const int value = 0;
};
// partial specialization where n is ...
3
votes
1answer
82 views
Defining and calling a C++ function of a specialized template
I am currently learning C++ in-depth, and I have come across something that has stumped for a couple hours now. Why is it when I make a template and then specialize it, that I can't call or define ...
3
votes
2answers
76 views
Why the linker complains about multiple definitions in this template?
This little piece of code triggers the linker's anger when included on at least two translation units (cpp files) :
# ifndef MAXIMUM_HPP
# define MAXIMUM_HPP
template<typename T>
T ...
3
votes
3answers
126 views
C++ Template: Partial template Function Specialization in template class
I want to specialize specific function in template class.
Eg:
template<class T>
class A
{
public :
void fun1(T val);
void fun2(T val1, T val2);
};
template <class ...
3
votes
3answers
100 views
Is it possible to specialize a template definition based on the existence of a nested typedef of a template type parameter?
I have a template, template <typename T> class wrapper, that I would like to specialize based on the existence of typename T::context_type. If typename T::context_type is declared, then the ...
3
votes
3answers
114 views
Template specialization by another template (of same class)
I'm writing an array class. This array class can contain again arrays as members. When implementing a printing function, I need specializations.
26:template <class T> class array : public ...
3
votes
4answers
80 views
How does boost::lexical_cast take only one template type?
I've looked through the mess that is lexical_cast.hpp and this continues to escape me.
How is lexical_cast, whose 'base definition' takes both a template source and destination, able to accept ...