Some programming languages, like D and C++11, support templates that take a variable number of parameters. http://en.wikipedia.org/wiki/Variadic_templates
33
votes
2answers
1k views
What is the meaning of “… …” token?
While browsing through gcc's current implementation of new C++11 headers, I stumbled upon "......" token. You can check, that the following code compiles fine [via ideone.com].
template <typename ...
16
votes
1answer
163 views
Comparing variadic templates
If I have two variadic template arguments, A and B, how can I ensure at compile-time that the types of all of the members of A are also the types of a subset of B (in the same order)?
Contrived ...
16
votes
2answers
508 views
C++0x: create static array with variadic templates
There was an answer on stackoverflow (which I can't seem to find anymore) which demonstrated how a variadic template can be used in C++0x to create a static array at compile time:
template <class ...
15
votes
3answers
953 views
make_unique and perfect forwarding
Why is there no std::make_unique function template in the standard C++11 library? I find
std::unique_ptr<SomeUserDefinedType> p = new SomeUserDefinedType(1, 2, 3);
a bit verbose. Wouldn't the ...
15
votes
1answer
480 views
Pretty-print std::tuple
This is a follow-up to my previous question on pretty-printing STL containers, for which we managed to develop a very elegant and fully general solution.
In this next step, I would like to include ...
14
votes
4answers
424 views
“unpacking” a tuple to call a matching function pointer
I've created a simplified example showing a problem I'm struggling to solve. I'm trying to store in a std::tuple a varying number of values, which will later be used as arguments for a call to a ...
14
votes
2answers
341 views
Quick sort in compiltion time using C++11 variadic template
Quick sort in compiltion time using C++11 variadic template
Hi, all. I just implement the quick sort by using C++11 variadic template to evaluate it in compilation time.
But I encounter the ...
14
votes
2answers
702 views
Is it possible to “store” a template parameter pack without expanding it?
I was experimenting with C++0x variadic templates when I stumbled upon this issue:
template < typename ...Args >
struct identities
{
typedef Args type; //compile error: "parameter packs not ...
11
votes
1answer
237 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
2answers
186 views
How to detect the first and the last argument in the variadic templates?
How to detect the first and the last argument in the variadic templates?
For the 1st argument it is easy (just compare sizeof...(T) with 0), but is there a way to detect the last element?
The ...
11
votes
3answers
583 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 ...
10
votes
3answers
498 views
split variadic template arguments
How do I split variadic template arguments in two halves? Something like:
template <int d> struct a {
std::array <int, d> p, q;
template <typename ... T> a (T ... t) : p ({half ...
9
votes
5answers
191 views
random picker function using variadic templates — is it possible?
I would like to use C++11's variadic templates to achieve a generalized "random picker" function.
Something like this...
template <typename T>
T randomPicker(T one, T two, T three)
{
int ...
8
votes
2answers
144 views
Why is using an integral value parameter pack disallowed after a type parameter pack in C++11?
The question almost does not make sense without an example. So here is what I'm trying to do.
In general C++ allows the following:
template<class T, class U, T t, U u>
void func() {}
...
8
votes
3answers
271 views
Non-type variadic function templates in C++11
I saw a blog post which used non-type variadic templates (currently not supported by gcc, only by clang).
template <class T, size_t... Dimensions>
struct MultiDimArray { /* ... */ };
The ...
8
votes
2answers
256 views
Implementing meta-function zip in c++11
I am actually trying to see if I can get a minimal library that supports the very few operations I use from boost::fusion.
Here is what I have so far...
template < typename... Types >
struct ...
8
votes
2answers
180 views
Necessity of forward-declaring template functions
I recently created this example code to illustrate C++11 variadic template function usage.
template <typename Head, typename... Tail> void foo (Head, Tail...);
template <typename... Tail> ...
8
votes
3answers
220 views
Simulate variadic templates in c#
Is there a well known way for simulating the variadic template feature in c#?
For instance, I'd like to write a method that takes a lambda with an arbitrary set of parameters. Here is in pseudo code ...
8
votes
1answer
256 views
Variadic Templates and Type Traits
I currently have a variadic function which takes an arbitrary number of arguments of arbitrary types (duh), however, I want to restrict the types to ones which are POD only, and also the same size or ...
7
votes
1answer
172 views
Variadic Templates, Perfect Forwarding to functions with default arguments
I have been using a variadic template that acts as an exception firewall in an interface between C and C++. The template simply takes a function, followed by N arguments and calls the function inside ...
7
votes
1answer
147 views
Passing function template specializations to a variadic template function
I have no problem passing the address of a function template specialization to a regular template function:
template <typename T>
void f(T) {}
template <typename A, typename B>
void ...
7
votes
4answers
319 views
Implementing a std::array-like container with a C++11 initializer_list
The only and imo very inconvenient caveat of std::array is that it can't deduce its size from the initializer list like built-in C arrays, it's size must be passed as a template.
Is it possible to ...
6
votes
2answers
120 views
Overloaded function as argument of variadic template function
I'm trying to make variadic template function, which takes as arguments overloaded function and its arguments :)
int sumall(int a) { return a; }
int sumall(int a, int b) { return a+b; }
...
6
votes
2answers
156 views
Ambiguous overload on argument-less variadic templates
Related:
Ambiguous overload accessing argument-less template functions with variadic parameters
Simple variadic template function can't instantinate
Why is this variadic function ambiguous?
...
6
votes
1answer
107 views
What are the names of the new syntactic entities added for variadic templates?
C++11 introduced variadic templates
template <typename... Args>
void foo(Args... params) {
cout << sizeof...(Args) << endl;
}
What are the names of Args and params? I know ...
6
votes
9answers
179 views
accessing first n variadic function arguments
I have the following code :
template<size_t sz,typename T=float> class Vec{
T v[sz];
Vec(const T& val,const T&... nv){
//how do i assign `sz` number of first ...
6
votes
2answers
202 views
What is the precedence of the meta-operator …?
What is the precedence of the meta-operator ... whose job is to unpack template type parameter packs? I imagine it's pretty low, but how low is it? The C++ standard says:
The precedence of ...
6
votes
2answers
250 views
Expanding parameter pack containing initializer_list to constructor
I intend to use shared_ptr quite a bit in an upcoming project, so (not being aware of std::make_shared) I wanted to write a variadic template function spnew<T>(...) as a shared_ptr-returning ...
5
votes
4answers
171 views
How to create the Cartesian product of a type list?
I'd like to create the cross product of a list of types using variadic templates.
Here's what I have so far:
#include <iostream>
#include <typeinfo>
#include <cxxabi.h>
...
5
votes
6answers
197 views
Variadic templates and new
I have this class template:
template<class... T>
class Test {
std::vector<TestCase*> test_cases;
public:
Test() {
// Here, for each T an instance should be added to test_cases.
...
5
votes
4answers
231 views
How can I pull variadic template arguments off from the tail instead of the head?
For silly reasons I'll not go into here, I need the commented out line to work and the line above it it to not work:
template<uint _N, typename... _Args>
struct PartialTuple;
template<uint ...
5
votes
2answers
264 views
How to implement folding with variadic templates
I have an almost working solution. However, it fails to compile some simple cases, and I can't decipher the error message.
My current solution:
#define AUTO_RETURN( EXPR ) -> decltype( EXPR ) \
...
5
votes
1answer
312 views
c++ initializer lists and variadic templates
I wanted to create an array:
template < typename T, typename ... A > struct a {
T x [1 + sizeof... (A)];
a () = default;
a (T && t, A && ... y) : x { t, y... } {}
};
int ...
5
votes
1answer
684 views
Partial template specialization with multiple template parameter packs
Continuing my journey into the world of variadic templates, I encountered another problem.
Assuming the following template class:
template < typename T >
struct foo
{
//default ...
5
votes
6answers
920 views
Variadic templates
I have seen a lot of links introduced the variadic templates. But I have never seen one compilable example that demonstrates this approach?
Could someone provides me some links in which such ...
4
votes
2answers
68 views
Variadic Templates pack expansions
In Andrei's talk on GoingNative 2012 he talks about Variadic Templates, and he explains at one point by way of the example underneath how the parameter pack expansions work. Being fairly new to this ...
4
votes
2answers
158 views
Are variadic templates a potential code bloat?
Variadic templates will enable the rewriting of certain kind of functions into cleaner, type-safe versions. It is the case of printf, as the example given on Wikipedia:
void printf(const char *s)
{
...
4
votes
2answers
116 views
Variadic templates - incomplete type
Having this code:
template<class ...Args>
struct Are_Same
{
enum {value = Are_Same<Args...>::value};
};
template<class A,class... C>
struct Are_Same<A,C...>
{
enum ...
4
votes
1answer
146 views
using declaration in variadic template
This question is inspired in the following solution to multiple inheritance overloading pseudo-ambiguity, which is a nice way to implement lambda visitors for boost::variant as proposed in this ...
4
votes
3answers
213 views
Partial Specialization of tuple contents with variadic arguments
Currently, I'm trying to get some code to react differently to different types. This isn't the exact code, but it gets the message across.
template<class A, class B>
struct alpha {
enum { ...
4
votes
1answer
79 views
Variadic templates question
I'm trying to write a generic code for comparing std::functions using its target() template method. Here is my non-generic sample code:
#include <cstdio>
#include <functional>
static ...
4
votes
1answer
149 views
Position of a type in a variadic template parameter pack
I'm giving C++0x a try and I was wondering how to solve the following problem that came up.
I've got a variadic template class:
template<typename... T>
class MyLovelyClass {
...
3
votes
1answer
86 views
Template template variadics in C++
Can a template template variadic be used to catch all cases of a template parameter being passed that is itself a template?
I've been using templating to produce debug output for some template based ...
3
votes
3answers
127 views
C++11 variadic std::function parameter
A function named test takes std::function<> as its parameter.
template<typename R, typename ...A>
void test(std::function<R(A...)> f)
{
// ...
}
But, if I do the following:
void ...
3
votes
1answer
90 views
Variadic version of FastDelegate and extra value copy
I'm porting FastDelegate to C++0x using variadic templates.
#include "FastDelegate.h"
template<class R=fastdelegate::detail::DefaultVoid, class ...P>
class fast_delegate_base {
...
3
votes
3answers
94 views
Calling a function and passing parameters stored in a tuple?
I want a class Foo to store a function pointer, which it got on construction, and to call this function at some point. I looked at these two questions for help:
Pass tuple's content as variadic ...
3
votes
1answer
56 views
Chaining variadic templates together
What would X in the following code look like if it was converted to use C++11 variadic templates, and should support arbitrary number of template arguments?
template<int OFFSET>
struct A { enum ...
3
votes
1answer
101 views
Variadic template template arguments
The following code does not compiles using clang 3.0, is this because I have done it wrongly? Because it is not allowed in c++11 or because it is not supported in clang?
template<int OFFSET>
...
3
votes
1answer
131 views
Boost bind placeholder argument equal to the number of Variadic Template arguments
I want to know if it is possible to use the number of arguments passed to a variadic template as placeholder in a boost::bind call.
Something like this:
template <typename ... Args>
...
3
votes
1answer
149 views
C++ Templates variadic but static
I am training my template skills in C++ and want to implement a vector class.
The class is defined by the vector dimension N and the type T.
Now I would like to have a constructor that takes exactly N ...