Partial template specialization is a particular form of class template specialization. Usually used in reference to the C++ programming language, it allows the programmer to specialize only some arguments of a class template, as opposed to explicit specialization, where all the template arguments ...
1
vote
2answers
36 views
Can I create a partial template specialization of of a class template matching enumeration types?
I have a function template powered by a set of class template explicit specializations giving syntax like
abc.GetAs<DesiredType>("Name");
(where GetAs<t> is something like:
...
2
votes
1answer
32 views
Can a Default Template Argument correspond to a Specialization?
Hi :) I've looked around about this question and there seem to be a lot of related posts, but none of the answers so far could solve my problem. If you know about a post that answers this specific ...
1
vote
1answer
33 views
partial specialization for iterator type of a specified container type
I have a template struct, which accepts a Iterator type for the template argument.
now I need to specialize that class for iterators of different containers.
I have tried with std::vector
...
9
votes
0answers
223 views
Partial specialization and friendship [duplicate]
Suppose you have class A like this:
template <typename T, typename U>
class A;
And class B like this:
template <typename T>
class B;
And now you want both classes be friends when T ...
1
vote
3answers
66 views
How To Convert Templated Function Overloads to Partial-Specialized Templated Class Static Methods?
I have several functions that I want to specialize based on type qualities, such as "character, signed-integer, unsigned-integer, floating-point, pointer"; using type_traits seems like the way to do ...
1
vote
1answer
127 views
Generic algorithm for calling print on each element in the collection
When writing a template function like:
template<class T> void print(T const & collection)
When looping through the collection and dereferencing the iterator everything works right if you ...
3
votes
1answer
60 views
Template specialization and plain old functions
I have just a simple question, check this code please:
template < typename A >
void foo( A a )
{ cout<<"1\n"; };
template< >
void foo<float>( float a )
{ cout<<"2\n"; ...
2
votes
1answer
89 views
Template partial specialization problems
I am trying to write a size and type generic vector class for math programming. I am having problems with partial specialization.
The problem occurs when I try to specialize a member method of my ...
1
vote
2answers
113 views
partial specialization does not specialize any template arguments
I have the following code in which Im trying to make a templated safe array iterator.
template <typename T>
class SArrayIterator;
template <typename E>
class SArray;
class ...
5
votes
1answer
163 views
Partial template specialization of member function: “prototype does not match”
I'm trying to partially specialize a templated member function of an untemplated class:
#include <iostream>
template<class T>
class Foo {};
struct Bar {
template<class T>
...
0
votes
1answer
104 views
Undefined reference to partial specialized template class function during link time
So I had an problem with partial specialization of function templates. I choose the solution described here: Question
Now I have this:
#include <vector>
#include <iostream>
template ...
1
vote
3answers
90 views
Function template specialization with a template class [duplicate]
Possible Duplicate:
partial specialization of function template
I can't find anywhere a solution for my problem, because if I search with the keywords I come up with would give me solutions ...
2
votes
1answer
97 views
c++ break template specialization ambiguity
I have been reading through C++ Template Metaprogramming and doing the exercises contained therein and have come across a problem. The core of the problem can be seen with this small example:
...
1
vote
1answer
94 views
Partial specialization with a non-template class which is inherited from a template class
Example 1
If we have Base and Derived classes
class Base
{};
class Derived : public Base
{};
and a template class
template <class T, class Enabler=void>
class Partialy
{
public:
void ...
1
vote
3answers
67 views
C++ help understanding partial specialization
I'm reading some chromium project source code and i found one thing i cant understand, there's a template which take one parameter and partial specialization like below:
template <class Sig>
...
1
vote
1answer
123 views
member-template specialization
template<typename T>
class C
{
void f() { }
};
/*template<typename T>
void C<T*>::f() { }*/
template<>
void C<int*>::f() { }
If we remove comment, code will not ...
2
votes
1answer
336 views
Partial specialization of member function [duplicate]
Possible Duplicate:
“invalid use of incomplete type” error with partial template specialization
Why is it that I can do this:
template <typename T>
struct A
{
void ...
0
votes
3answers
224 views
A workaround for partial specialization of function template?
Consider the following metafunction for an integral pow (it is just an example) :
class Meta
{
template<int N, typename T> static constexpr T ipow(T x)
{
return (N > 0) ? ...
2
votes
3answers
189 views
C++ non-specialized member in template class
I have a question about template classes.
For example, take this class
template<class TBase> class CTemplateInherit : public TBase
{
public:
virtual void DoNonSpecializedWork();
...
3
votes
2answers
168 views
can template alias be used for partial specialization?
Given a template alias
template<unsigned U>
using uint_ = integral_constant<unsigned,U>;
The partial specialization of
template<class T,class P>
struct size{};
as
template ...
0
votes
2answers
81 views
Partial specialisation of a method if pointer to a member function is NULL
I have got a template class with 2 parameters and a fancy push_back method:
template<class Element, void (Element::*doWhenPushingBack)()>
class StorableVector {
public:
...
...
1
vote
1answer
230 views
Specialization of Member Function of a Template Class - on Linux using g++-4.7
I know from this thread - template class member function only specialization
that if I specialize a class template, I need to specialize all the member functions.
So, my rationale was that I would ...
0
votes
1answer
148 views
template partial specialization prevents initialization from derived class
I inherit from a template with partial specialization, and I can't call the template ctor from the derived ctor.
When the partial specialization in the code below is commented out, it compiles ...
2
votes
2answers
215 views
ambiguous partial specializations with std::enable_if
I have a problem encountered at a condtion like below:
#include <iostream>
#include <type_traits>
#define TRACE void operator()() const { std::cerr << "@" << __LINE__ ...
6
votes
2answers
301 views
Template compilation error in Sun Studio 12
We are migrating to Sun Studio 12.1 and with the new compiler [ CC: Sun C++ 5.10 SunOS_sparc 2009/06/03 ]. I am getting compilation error while compiling a code that compiled fine with earlier version ...
0
votes
1answer
128 views
How to do a partial template specialization on a nested type?
I have a templated class Converter, and I'd like to do a partial specialization. The tricky part is I'd like to specialize it to MyFoo::Vec where MyFoo again can be specialized as a template ...
1
vote
2answers
122 views
What is wrong with partial template specialization?
I am writing a templated class with one type paramenter and one boolean, here is the code:
template<class T, bool p = true>
class A
{
private:
T* ptr;
public:
A();
};
...
4
votes
2answers
239 views
C++ Templates: Partial Template Specifications and Friend Classes
is it possible to somehow make a partial template specification a friend class? I.e. consider you have the following template class
template <class T> class X{
T t;
};
Now you have ...
1
vote
2answers
472 views
C++ enum template partial specialization
I have a matrix class very tailored for the algorithm I need to implement. I know about Eigen but it doesn't fit my bill so I had to do my own. I have been working all along with Column Major ordering ...
1
vote
3answers
149 views
Partial template template specialization
have this code:
template<typename T, template<typename, typename> class OuterCont, template<typename, typename> class InnerCont, class Alloc=std::allocator<T>>
class ...
2
votes
2answers
129 views
c++ partial specialization: How can I specialize this template<class T1, class T2> to this template<class T1>?
#include <iostream>
using namespace std;
template <class T1, class T2>
class A {
public:
void taunt() { cout << "A"; }
};
template <class T1>
class A<T1, T1> {
...
1
vote
1answer
179 views
Partial class template specialization with maps
I'm a new C++ programmer, I learned Java and ANSI C a time ago and decided to give it a shot.
Well, I love C++, but I didn't like how the iterators work:
In java, you could make a whole container ...
0
votes
1answer
173 views
C++: Templates: Partial Specialization: Print Everything Template
Good day everybody!
Having the following code:
template<typename T, typename OutStream = std::ostream>
struct print
{
OutStream &operator()(T const &toPrint, OutStream ...
0
votes
2answers
517 views
Expression trees vs IL.Emit for runtime code specialization
I recently learned that it is possible to generate C# code at runtime and I would like to put this feature to use. I have code that does some very basic geometric calculations like computing ...
6
votes
1answer
353 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> ...
2
votes
2answers
120 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
4answers
121 views
Is it possible to partially de-allocate memory from the middle of some object and “split” it?
For example I have an array of 200 integers. What I want to do is convert it to two arrays of 80 integers, removing the 40 integers in between. The goal of course is to use the existing memory block ...
2
votes
4answers
479 views
Force compile time error when specialized template function is invoked
I have a template function. It has well defined semantics so long as the argument is not a pointer type. If someone calls this function passing an argument of type pointer I want to force a compile ...
3
votes
3answers
5k views
C++ function template partial specialization?
I know that the below code is a partial specialization of a class:
template <typename T1, typename T2>
class MyClass {
…
};
// partial specialization: both template parameters have same ...
4
votes
2answers
971 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
158 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 ...
0
votes
1answer
314 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. ...
3
votes
1answer
123 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 ...
5
votes
4answers
369 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 ...
6
votes
1answer
1k 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
5answers
267 views
C++: partial function specialization for void not allowed - alternative solution?
I think I understand by now why partial function templates are considered confusing and unnecessary, and are thus not allowed by the C++ standard. I would however appreciate some help with ...
11
votes
2answers
1k views
Tag dispatch versus static methods on partially specialised classes
Suppose I want to write a generic function void f<T>(), which does one thing if T is a POD type and another thing if T is non-POD (or any other arbitrary predicate).
One way to achieve this ...
3
votes
2answers
130 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 ...
2
votes
2answers
190 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);
...
3
votes
3answers
266 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
// ...