Often used to refer to a template parameter that is itself a template.
1
vote
1answer
28 views
Passing Class as a Non-type argument in templates in c++
In Templates as I studied we can only have integral arguments i.e int, pointer to other data types and also template template parameter.
But here I am able to pass just a simple class also as a ...
3
votes
2answers
147 views
Use std::tuple for template parameter list instead of list of types
I'm trying to make a call to a templated function like this :
typedef std::tuple<int, double, bool> InstrumentTuple;
Cache cache;
InstrumentTuple tuple = cache.get<InstrumentTuple>();
...
5
votes
1answer
91 views
Can a template template argument from different namespace be a friend?
I apologize if the title of this question is less than helpful; I don't know a succinct way to ask this question without giving the following example:
template <template <class> class ...
1
vote
2answers
117 views
Is it possible to define an alias for a template-template parameter?
I'm experimenting with template-template for fun. I have the following class:
template<template<class> class T, typename R> class Unit
{
using FullType = T<R>;
using ...
4
votes
1answer
77 views
Template template functions and parameters deduction
I've got a problem with template templates and parameters deduction. Here's the code:
template<typename U, template<typename> class T>
void test(T<U>&& t)
{
...
}
I ...
1
vote
1answer
148 views
Type deduction and argument passing with variadic template templates
I implemented a C++ equivalent of Python's chain function a while ago thanks to variadic templates. The function is used to iterate successively through many containers. Here is the old working ...
2
votes
0answers
296 views
VC++ Variadic-Template-Template error C2244: unable to match function definition to an existing declaration
this is probably a newb's error, i'm using Microsoft Visual C++ Compiler Nov 2012 CTP, and when i try to compile this:
#include <tuple>
class A
{
public:
template <class... Fs, template ...
5
votes
2answers
221 views
Functional C++ via template abuse
I decided to try to write a functional map implementation in C++ using templates, and this is what I've come up with:
template <
class U,
class V,
template <class> class T
...
10
votes
1answer
169 views
Template template class with enum specification fails on MSVC++ Compiler: C3201
Code
Here is the SSCCE example of my problem:
// My Library, which I want to take in the user's enum and a template class which they put per-enum specialized code
template <typename TEnum, ...
3
votes
3answers
478 views
Why is allocator::rebind necessary when we have template template parameters?
Every allocator class must have an interface similar to the following:
template<class T>
class allocator
{
...
template<class Other>
struct rebind { typedef ...
1
vote
3answers
177 views
CRTP and template template?
I would like to do CRTP for template classes and I want the abstract base class to know about the template parameters of the derived classes.
I tried this but it does not work :
...
6
votes
1answer
144 views
Are template template template parameters an extension or part of the standard?
I was searching for something else related to template template parameters and happened upon this answer which claims that template template template parameters are not allowed by the standard.
...
1
vote
1answer
83 views
Possible forms of template template argument in the template instantiation
One of the possible forms of template parameter is a class template. The C++ standard (C++2003) states that an argument for a template template parameter during the template instantiation is an ...
1
vote
1answer
71 views
Template specialization on typename parameter being any instantiation of a particular template
I have a class template Z that I would like specialize when passed a type that is an any instantiation of a particular template N:
struct L {
template <typename S> void foo(S &) ...
1
vote
3answers
148 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 ...
3
votes
2answers
196 views
How do I access an inner template typedef present in the members of a variadic template argument pack?
I have some code which seems unambiguous to me, but gcc4.7 is choking on it:
#include <iostream>
#include <tuple>
using namespace std;
// Container for mixins
...
2
votes
2answers
610 views
Template template parameters and variadic templates with gcc 4.4
I'm using gcc 4.4 on Debian squeeze. Consider the following code.
#include <map>
#include <string>
using std::map;
using std::string;
// Args lets the user specify additional explicit ...
5
votes
1answer
351 views
Is there such a thing as a function template template parameter?
So I know C++ has a feature called "template template parameters", where you can pass a class template as a template parameter. For example:
template <typename T>
class vector { ... };
...
13
votes
3answers
3k views
Variadic template templates and perfect forwarding
This question on the object generator pattern got me thinking about ways to automate it.
Essentially, I want to automate the creation of functions like std::make_pair, std::bind1st and std::mem_fun ...
3
votes
1answer
407 views
Wrapping template template parameter class with SWIG
I have a C++ class like the following:
template< template<typename> class ContainerType, typename MemberType>
class MyClass
{
public:
MyClass(ContainerType<MemberType>* ...
4
votes
4answers
473 views
should template template parameters be allowed to receive parameters resolved from previous parameters?
I've found a weird issue on g++ 4.4 and 4.5. I've asked about this because i thought that i was making some silly error in the code. The original post is here but for post completitude i'll repost the ...
0
votes
1answer
330 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!), ...
1
vote
5answers
202 views
Getting absurd errors in using template template arguments
I have been trying to create a templated class(Test2) that takes 2 template arguments,Type1 and Type2. It is known that the second argument would also be a templated class that takes 2 template ...
5
votes
1answer
354 views
Template class that refers to itself as a template template parameter?
This code:
template <template <typename> class T>
class A
{
};
template <typename T>
class B
{
A<B> x;
};
doesn't compile, I suppose since A<B> is interpreted as ...
2
votes
4answers
885 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 ...
2
votes
2answers
3k views
Help with c++ template templates
Ok, so I wrote an stl-like algorithm called cartesian_product. For those who don't know, the cartesian product is every possible pair of elements from two sets. So the cartesian product of {1, 2, 3} ...

