Variadic templates are templates that take a variable number of parameters
4
votes
1answer
108 views
Passing parameter pack to emplace stl function cause compilation bug
According to the definition of emplace_back, void emplace_back (Args&&... args); is a variadic template function. So, I wrote the following:
#include <vector>
int main()
{
...
1
vote
1answer
42 views
Two variadic templates for a single function? Part 2
As continuation for: Two variadic templates for a single function?
I need a function with two variadic type lists.
Example:
template<typename... Types, typename... Args>
void ...
2
votes
1answer
54 views
Expansion of a variadic template function causes segmentation fault
I am studying the new C++11 feature about the Variadic Templates, so I wrote a fun template function:
template <typename T>
void fun(T& a) //Base to stop the recursion
{
std::cout ...
0
votes
1answer
54 views
Instantiating a variadic member function template of a class template
How can I instantiate a variadic member function template of a class template in separate .cpp file? Say, given an above class template in a set of files: a.hpp with definition of interface, ...
2
votes
2answers
69 views
variadic multidimensional array
Could I call a multidimensional array like
func(0,0,0); //=> if I know it's dimension on the run time.
func(0,0,0,0,0,0,0,0,0,0,0); //=> if I know it's dimension on the run time.
through ...
1
vote
1answer
115 views
Variadic template overload resolution
Suppose I have a list of template parameters that can be incremented. I want to increment the head of this list. Here is the code
template<int N>
struct Counter {
static constexpr ...
0
votes
0answers
55 views
variadic templated Object multiplication
In the below code I am doing multiplication variadic templates for the int values and also for the Objects. It works for the all primitive types. It also works for the only 2 objects. But the code ...
6
votes
1answer
78 views
variadic templates sum operation left associative
The code below works for the: goal for the left associative sum operation: sum(1,2,3,4);
However, it won't work correctly for sum(1,2,3,4,5) or sum(1,2,3,4,5,...). Anything with more than 4 ...
5
votes
2answers
173 views
Operator[] Overloading in MultiDimensional Arrays c++
When I call: a7[0][1][100];
I am able to obtain the first index '0' in the operator[] but as index I won't able to obtain other index values 1 and 100 as recursively. How could I able to use ...
1
vote
1answer
55 views
Merge two variadic templates in one
Im trying to implement a variadic template wrapper of the loki typelist.
Merging two typelists in loki-style is easy, but im having problems with merge in variadic-template style.
This is my ...
6
votes
1answer
191 views
How can C++ and C variadic arguments be used together?
Generally, using the C++11 variadic template feature with functions requires the variadic-based function arguments to be the last in the function argument list. There is one exception; they are the ...
3
votes
3answers
150 views
How to extract the argument list in variadic templates for n-dimensional array
I have a template class with the following specification:
template <typename T, size_t... Dims> class Array;
And say it can be used as follows:
// Define a 2X3X4 array of integers. Elements ...
1
vote
1answer
68 views
Generic thread c wrapper function for c++
Here I have written a thread wrapper for c thread function pthread_create(). It will allow calling any method on any object and passing any number of arguments to that method. The API is:
template ...
1
vote
3answers
91 views
Sum helper fails for classes
I have the following sumhelper written:
template <typename T1, typename T2>
auto sum(const T1& v1, const T2& v2) -> decltype( v1 + v2) {
return v1 + v2;
}
template <typename ...
0
votes
3answers
152 views
Why is the sum 0?
I am trying to create a general sum function template. This template will be left associative. Below is my implementation
int result=0;
template <typename D, typename T>
const T ...
3
votes
3answers
155 views
Converting Variadic template pack into std::initializer_list
Assume that there is a function which accepts several strings:
void fun (const std::initializer_list<std::string>& strings) {
for(auto s : strings)
// do something
}
Now, I have a ...
4
votes
1answer
148 views
Variadic template metaprogramming : a bug in clang++ or g++?
Consider this variadic template madness to cast an array from one type to another:
#include <array>
#include <type_traits>
template <typename Type>
class Converter
{
public:
...
14
votes
1answer
225 views
How does template argument deduction work in this case?
Given this code, how does template argument deduction decide what to do for the last function call?
#include <iostream>
template<typename Ret, typename... Args>
Ret ...
3
votes
1answer
146 views
Pointer to variadic function template
I have a simple class A, providing a variadic function template. This function uses private data from within A, but the function itself is public. The class goes as follows:
class A {
public:
...
0
votes
1answer
74 views
How to avoid writing explicit template arguments for an operator taking a compile-time value?
As per my previous post, I learned that I cannot use a function parameter as an argument to a compile-time construct. This is because the parameter to function is expected at run-time, but the ...
1
vote
1answer
64 views
c++ embeded template templates
I have a class that 'wraps' an AngelScript Method. Basically, you send it the Class, method return type, a pointer to the method, and a list of arguments.
So far, I am able to successfully make this ...
3
votes
1answer
162 views
Attempt to remove last type from a tuple is failing
I'm trying to remove the last element of a tuple. It works when I have only one element in the tuple to remove. But when I have more than one, things go wrong. I can't get why this isn't working. ...
1
vote
2answers
72 views
SFINAE set of types contains the type
I want to construct my class class C from each type in set of types ...T. sizeof...(T) is large enough so that I did not want to write out all the constructor variants as below:
// T : {T1, T2, ..., ...
2
votes
2answers
119 views
Generating Spirit parser expressions from a variadic list of alternative parser expressions
I'm looking for the simplest way to implement variadic function which takes list of boost::spirit::qi rules and expands the list into expression of format: rule1 | rule2 | rule3 |.... Let's assume ...
-5
votes
1answer
75 views
Is there a way to define Variadic template macro?
Is there a way to define variadic template macro just like variadic macro?
For example, if define variadic macro like:
#define PRINT_STRING(fmtId, ...) { \
CString fmt; \
...
2
votes
1answer
122 views
Extern template with variadic arguments doesn't compile
I try to create a extern template with variadic arguments like:
extern template<typename... XS> void log( XS... xs );
But gcc 7.2 doesn't compile it, and show the error:
error: expected ...
6
votes
0answers
478 views
Unexpected non-constant std::initializer_list
I was toying a little bit with the indices trick to see where I could go to with and came across a strange error... First, the plain not-so-old indices:
template<std::size_t...>
struct indices ...
11
votes
2answers
792 views
Code I've never seen in C++11
I'm looking at this source code
template<char... digits>
struct conv2bin;
template<char high, char... digits>
struct conv2bin<high, digits...> {
static_assert(high == '0' || ...
4
votes
2answers
262 views
Variadic templates and typesafety
There are several implementations of variadic templates printf function. One is this:
void printf(const char* s) {
while (*s) {
if (*s == '%' && *++s != '%')
throw ...
9
votes
2answers
185 views
C++11 initializer lists on variadic template's parameters: why isn't this working
Enclosing a variadic template's parameters in initializer lists should assure that they're evaluated in order, but isn't happening here:
http://liveworkspace.org/code/rT5o2$2
#include ...
3
votes
3answers
160 views
C++11 variadic templates and comma-separated expressions equivalence
In a variadic template the ... operator expands a parameter pack into a series of comma-separated arguments (in the simplest form). My question is: how come that calling some_function() for multiple ...
0
votes
1answer
45 views
get the Nth type of variadic template templates?
How ot get the Nth type of variadic template templates? For example
template<typename... Args>
class MyClass
{
Args[0] mA; // This is wrong. How to get the type?
};
12
votes
4answers
506 views
How to reverse the order of arguments of a variadic template function?
I have a template function with varargs template arguments, like this
template<typename Args...>
void ascendingPrint(Args... args) { /* ... */ }
And I want to write
template<typename ...
2
votes
1answer
77 views
Using variadic templates to implement Get(Tuple) got “parameter packs not expanded with ‘…’” error
I want to implement something like std::get(std::tuple), having a tuple class:
template<typename ... Types> class Tuple;
template<> class Tuple<> {};
template<typename First, ...
2
votes
1answer
91 views
Fold arbitrary number of pairs of iterators into a new iterator. Metaprogramming for a nice syntax?
I have an algorithm that takes two ranges and returns a range that iterates, computing on the fly, a special subset of elements in the first range based on the contents of the second. The special ...
1
vote
2answers
112 views
How to use CRTP with variadic templates?
Let's suppose originally I have the following design using CRTP:
template<class Outputter> class Generator {
protected:
vector<int> v;
private:
void work(ostream& out) {
...
0
votes
1answer
44 views
“Distributive” variadic templates
I have a variadic template class.
Its constructor should accept an instance of a specific class templated on each parameter, i.e.
class Foo<A>
{
public:
Foo(Bar<A>);
};
class ...
5
votes
2answers
158 views
What is a safe way to increment an int in a variadic template expansion?
I am trying to implement a C++11 wrapper around an SQL library written in C. The C library has separate functions for getting different data types from an SQL statement which require a column index. A ...
6
votes
3answers
174 views
Varadic templates: producing a tuple of pairs of adjacent elements
My goal is to do something so that for instance,
pairs<1,2,3,4>()
Has return type
std::tuple<some_other_type<1,2>, some_other_type<2,3>, some_other_type<3,4>>
I am ...
2
votes
1answer
114 views
Mapping opaque arrays to function arguments using variadic templates and typelists
TLTR: I would like to map some arrays from a template container to the arguments of a function according to a specific order defined by indexes stored in a list of variadic templates (I can't think ...
3
votes
1answer
99 views
Variadic template argument deduction fails when passing initializer lists
Bar holds a std::vector of std::pairs of std::arrays of FooValueAdaptors.
FooValueAdaptor implicitly converts int to bool to FooValue, which makes little sense in this contrived example, but perfect ...
0
votes
2answers
78 views
Trouble binding a variadic lambda
I'm trying to create a function that will bind a variadic lambda factory method to a function which takes no parameters. I'm not sure if the VC support(using VS2012 with the Nov. 2012 CTP) isn't fully ...
1
vote
2answers
107 views
Is it possible to pass a reference to a variadic template function?
Suppose, I have a base class using CRTP and providing a variadic template static member function
template<typename derived_task>
struct task_impl : library::task
{
/* some useful ...
1
vote
1answer
80 views
Wrapper for std::queue emplace
I'm working with Visual Studio 2012 on Windows 8 and trying to create a wrapper for std::queue which adds thread safety and a few other features. I'm having trouble creating a wrapper function for ...
3
votes
5answers
295 views
Force all && to be executed?
Consider the following variadic function
template <typename Type, typename... Types>
bool f(Type& arg, Types&... args)
{
return f(arg) && f(args...);
}
template ...
5
votes
1answer
173 views
Variadic template function: specialize head/tail and empty base case
I'd like to have a variadic template function inside a class. The variadic template arguments are chars which should be processed in a loop-like manner. So I thought of writing it like in haskell with ...
2
votes
0answers
52 views
Variadic template with type at end [duplicate]
I'm trying to write a variadic function that will specialize on the last argument provided.
// we take em all as long as they are convertible to string
template<typename... Args>
...
3
votes
1answer
66 views
Create a function pointer from Typelist subsets
I have a Typelist implementation very similar to this one. If you don't know what a typelist is: in short, it behaves like variadic templates using nested tuples. You can read more about them here.
I ...
4
votes
2answers
217 views
iterating over variadic template's type parameters
I have a function template like this:
template <class ...A>
do_something()
{
// i'd like to do something to each A::var, where var has static storage
}
I can't use Boost.MPL. Can you please ...
5
votes
2answers
143 views
Binding function arguments in C++11
I'd like to generically "pickle" function calls so they can be executed later. The return type of those functions will always be void (for now). Something like this:
template<typename F, ...



