Tagged Questions
6
votes
1answer
119 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
301 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 ...
3
votes
1answer
154 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
3answers
141 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
// ...
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 ...
1
vote
2answers
371 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
144 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();
...
0
votes
1answer
93 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
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
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
3answers
187 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 int ms_id;
};
...