Tagged Questions
19
votes
2answers
238 views
Why is it disallowed for partial specialization in a non-type argument to use nested template parameters
I have this code
template<int N, bool C = true>
struct A;
template<int N>
struct A<N, !(N % 5)> {
/* ... */
};
// should work
A<25> a;
That is, for numbers N that are ...
9
votes
2answers
2k views
Partial template specialization of free functions - best practices
As most C++ programmers should know, partial template specialization of free functions is disallowed. For example, the following is illegal C++:
template <class T, int N>
T mul(const T& x) ...
9
votes
2answers
8k 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
invalid use of ...
7
votes
4answers
462 views
specialize a member template without specializing its parent
I have a class template nested inside another template. Partially specializing it is easy: I just declare another template< … > block inside its parent.
However, I need another partial ...
7
votes
5answers
3k views
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 objects are pointers, and i want to specialize only the delete-method. ...
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
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 ...
5
votes
3answers
103 views
Avoiding duplication of function definitions in template specializations
The class Widget has some functions that apply for all parameter types (common functions) and other functions that need to be specialized for given types (the uncommon functions).
g++ insists that ...
5
votes
6answers
156 views
Unrolling loops using templates in C++ with partial specialization
I'm trying to use templates to unroll a loop in C++ as follows.
#include <iostream>
template< class T, T i >
struct printDown {
static void run(void) {
std::cout << i ...
5
votes
1answer
145 views
Partial specialization with reference template parameter fails to compile in VS2005
I have code that boils down to the following:
template <typename T> struct Foo {};
template <typename T, const Foo<T>& I> struct FooBar {};
////////
template <typename ...
4
votes
1answer
428 views
class template partial specialization parametrized on member function return type
The following code, which attempts to specialize class template 'special', based on the return type of member function pointer types, results in a compile error with VC9:
template<class F> ...
4
votes
3answers
1k 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 so I don't have a ...
3
votes
2answers
150 views
Template partial specialization with multiple template argument error
When I use template partial specialization on a class with one template argument, I can specialize a method like this:
#include <cstdlib>
template< std::size_t Dim >
class Test
{
public:
...
3
votes
2answers
122 views
Is there a way a partial specialization is always preferred over the primary template?
I'm asking myself
Can you write a class template and a corresponding partial specialization such that for any set of template arguments for the parameters, the partial specialization is taken by ...
3
votes
1answer
78 views
Avoiding duplication of function definitions in partial template specializations when using traits
How does one share common_fn() among all specializations (for Widget<A<T> > and Widget<B<T> >, no matter what T is) in the code below?
#include <cassert>
struct Afoo ...
3
votes
1answer
151 views
partial template specialization
I have a scenario in which there is a template class
template<typename X, typename Y>
class Foo
{
typedef Y::NestedType Bar;
int A (Bar thing);
void B();
int C(X that);
// other stuff
};
...
3
votes
2answers
82 views
How to specialize a complex template with inheritance - C++
I can't seem to find the right syntax to specialize this template :
template <class Object, class Var, class Invert, class Step = Var, unsigned int FIXED = IW_GEOM_POINT>
class TSin : public ...
3
votes
3answers
140 views
Problem with C++ Partial Template Specialization
I have a situation similar to this:
template<class A, class B>
class MyClass<A, B>
{
...
static A RARELY_USED_A;
}
// Seems to work but does not cover all possible cases, since
// ...
3
votes
1answer
184 views
CPP templated member function specialization
I'm trying to specialize the member function moment() only (not the hole class) like this:
template<class Derived, class T>
class AbstractWavelet {
public:
[...]
template<bool ...
3
votes
2answers
106 views
how to templatize partial template specializations?
I'm not even sure what title to give this question; hopefully the code will demonstrate what I'm trying to do:
#include <string>
#include <list>
using namespace std;
template<typename ...
3
votes
2answers
378 views
Get the signed/unsigned variant of an integer template parameter without explicit traits
I am looking to define a template class whose template parameter will always be an integer type. The class will contain two members, one of type T, and the other as the unsigned variant of type T -- ...
3
votes
5answers
2k 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 the lines of:
...
2
votes
2answers
93 views
Why doesn't my program work when I try to partially specialize a function template?
I am an beginner in template metaprogramming trying to implement generation of multiple versions of similar but slightly different code:
#include <iostream>
enum Type
{
a1,
a2
};
enum ...
2
votes
2answers
223 views
Template parameters not used in partial specialization
I have the following code:
template<typename T, typename Allocator = std::allocator<T> >
class Carray {
// ...
typedef T* pointer;
typedef pointer iterator;
// ...
};
...
2
votes
1answer
648 views
Too few template-parameter-lists problem
Can anybody please tell me how to make the following pseudo-code compatible with GCC4? I wonder how it works under MSVC...
typedef int TypeA;
typedef float TypeB;
class MyClass
{
// No base template ...
2
votes
2answers
330 views
Inner class depending on a template argument
Consider next example :
#include <iostream>
#include <typeinfo>
template< int N, typename T >
struct B
{
struct C;
};
template< typename T >
struct B< 0, T >::C
{
...
2
votes
1answer
206 views
c++ member function specialisation of a class that has a template as a parameter
I am working on a template class Array, which accepts another template TRAITS as a parameter.
template <typename BASE, typename STRUCT>
class Traits {
public:
typedef BASE ...
2
votes
1answer
196 views
May std::tuple_element double as a universal template argument retriever?
This question got me thinking. Sometimes it's useful to grab an actual argument from a class template specialization, if it fails to define a public typedef of the argument. In C++03 it's a sign of ...
2
votes
2answers
176 views
Error with C++ partial specialization of template
I am using PC-Lint (great tool for static code analysis - see http://www.gimpel.com/)
For the following chunk of code:
class ASD {
protected:
template<int N>
void foo();
};
...
2
votes
3answers
592 views
Can I use partial template specialization for a (non-member) function?
I'm trying to use partial template specialization on a (non-member) function, and I'm tripping up on the syntax. I've searched StackOverflow for other partial template specialization questions, but ...
2
votes
3answers
253 views
specializing functions on stl style container types
If i have a type T, what is a useful way to inspect it at compile time to see whether its an STL-style container (for an arbitrary value type) or not?
(Assumption: pointers, reference, etc. already ...
2
votes
2answers
2k 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-recurring template ...
1
vote
2answers
83 views
Partial template specialisation of a functor that's calling a member method of objects passed to it
I have the following functor and its partial specialisation
template <class _T, typename _Return = void, typename _Arg = void>
struct Caller
{
typedef _Return(_T::*Method)(_Arg);
...
1
vote
2answers
367 views
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 function, what I finding is, as in the example below, I can do a full specialization fine.
...
1
vote
3answers
489 views
Default parameter for partial specialization
What syntax I want to achieve on user side:
double a(1.), b(2.), deps(.1);
bool res1 = compare<double>()(a, b); // works with default eps
bool res2 = compare<double, ...
1
vote
3answers
143 views
How to specialize only some members of a template class?
Code:
template<class T>
struct A {
void f1() {};
void f2() {};
};
template<>
struct A<int> {
void f2() {};
};
int main() {
A<int> data;
data.f1();
data.f2();
...
1
vote
2answers
250 views
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.e I*) ?
template <class I>
struct TIList
{
typedef std::vector <I> Type;
};
...
1
vote
2answers
345 views
C++: Partial template specialization
I'm not getting the partial template specialization.
My class looks like this:
template<typename tVector, int A>
class DaubechiesWavelet : public AbstractWavelet<tVector> { // line 14
...
1
vote
4answers
549 views
Partial template specialization: matching on properties of specialized template parameter
template <typename X, typename Y> class A {
// Use Y::Q, a useful property, not used for specialization.
};
enum Property {P1,P2};
template <Property P> class B {};
class C {};
Is ...
1
vote
1answer
466 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 chain to create the ...
0
votes
0answers
35 views
Boost serialization: how to create specialisations for std::pair serialization?
So what I want is simple to create specialisations for std::pair serialization. say for std::pair<std::string, T> I want to get serialization and deserialization like: <key> serialized ...
0
votes
1answer
92 views
Template specialization with nested unspecialized type
I'm having trouble working out the syntax for a nested partial template specialization. I think that's the right way of putting it anyway. What I want is an as() function which returns a casted value. ...
0
votes
1answer
273 views
c++ pimpl idiom : Implementation depending on a template parameter
In this question I unsuccessfully asked how to use different pimpl implementation depending on a template argument.
Maybe this example ilustrates better what I am trying to do :
#include ...
0
votes
1answer
152 views
Specializing member function in a partially specialized class (error C2770)
As stands, Visual Studio allows template member function specialization on a non-specialized template class, even though this isn't standard. Any reason then why it isn't allowed on a partially ...
0
votes
2answers
242 views
C++ - Overload templated class method with a partial specilization of that method
There are a few questions already similar to this already on stack overflow, but nothing that seemd to directly answer the question I have. I do apologise if I am reposting.
I'd like to overload a ...
0
votes
3answers
1k views
C++ template partial specialization error
The following code is giving me a compilation error: class Q64 is not a valid type for a template constant parameter
template<int GRIDD, class T>
INLINE T grid_residue(T amount) {
T rem = ...
0
votes
1answer
202 views
Build error with template template parameter only after both members are parametrized
I am trying to pass a template template parameter whom its parameter is a non-type value of type equal to a subtype of a previous template parameter (whew! that was as hard to say as it is to read!), ...
0
votes
2answers
122 views
Multiple Partial specialization and full specialization required <> after type definition
I'm using an C++ "event" class that allowed one or two arguments in the to be called delegates.
Lately I've added support for delegates that don't require arguments, however when I specialze the ...
0
votes
1answer
137 views
Partial specialization of existing metafunction using mpl
Maybe I'm not all there today, but I'm wondering how to get this to work.
I'd like to partially specialize range_mutable_iterator and range_const_iterator from the boost library but only for specific ...
0
votes
3answers
242 views
C++ template specialization with <int&> not picking up an int
I have the following code:
template <typename T> LuaCall& operator>>(T) { BOOST_STATIC_ASSERT(sizeof(T) == 0); }
template <> LuaCall& ...