Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
8answers
5k views

Forward an invocation of a variadic function in C

In C, is it possible to forward the invocation of a variadic function? As in, int my_printf(char *fmt, ...) { fprintf(stderr, "Calling printf with fmt %s", fmt); return ...
17
votes
6answers
15k views

How to make a variadic macro (variable number of arguments)

I want to write a macro in C that accepts any number of parameters, not a specific number example: #define macro( X ) something_complicated( whatever( X ) ) where X is any number of parameters I ...
15
votes
6answers
9k views

C++ preprocessor __VA_ARGS__ number of arguments

Simple question for which I could not find answer on the net. In variadic argument macros, how to find the number of arguments? I am okay with boost preprocessor, if it has the solution. If it makes ...
12
votes
3answers
347 views

How to properly use references with variadic templates

I have something like the following code: template<typename T1, typename T2, typename T3, typename T4> void inc(T1& t1, T2& t2, T3& t3, T4& t4) { ++t1; ++t2; ++t3; ++t4; } ...
10
votes
3answers
383 views

Does Haskell have variadic functions/tuples?

The uncurry function only works for functions taking two arguments: uncurry :: (a -> b -> c) -> (a, b) -> c If I want to uncurry functions with an arbitrary number of arguments, I could ...
7
votes
3answers
271 views

Passing references to Variadic templates

I'm working on an Event library and I'm facing a problem with Variadic templates. All is working very nice except the fact that I can't pass references as parameters... Here is a very simplified ...
7
votes
2answers
237 views

How do I compile variadic templates conditionally?

Is there a macro that tells me whether or not my compiler supports variadic templates? #ifdef VARIADIC_TEMPLATES_AVAILABLE template<typename... Args> void coolstuff(Args&&... args); ...
7
votes
4answers
782 views

C++ overloading operator comma for variadic arguments

is it possible to construct variadic arguments for function by overloading operator comma of the argument? i want to see an example how to do so.., maybe something like this: template <typename ...
7
votes
2answers
2k views

Objective-C passing around … nil terminated argument lists

Having some issues with the ... in ObjectiveC. I'm basically wrapping a method and want to accept a nil terminated list and directly pass that same list to the method I am wrapping. Here's what I ...
6
votes
4answers
190 views

Why is `boost::any` better than `void*`?

What inherent advantages do boost::any and boost::any_cast offer over using void* and dynamic_cast?
6
votes
1answer
193 views

What is a good typesafe alternative to variadic functions in C++?

In joint with this question. I am having trouble coming up with a good type safe solution to the following seemingly basic problem. I have a class music_playlist that has a list of the songs it should ...
6
votes
1answer
679 views

Mixins, variadic templates, and CRTP in C++

Here's the scenario: I'd like to have a host class that can have a variable number of mixins (not too hard with variadic templates--see for example ...
5
votes
1answer
93 views

How can I access the types of a lambda in c++0x?

How is it possible to access the types of the parameters of a lambda function in c++? The following does not work: template <class T> struct capture_lambda { }; template <class R, class ...
5
votes
1answer
255 views

How to find the length of a parameter pack?

Suppose I have a variadic template function like template<typename... Args> unsigned length(Args... args); How do I find the length of the parameter list using the length function ?
4
votes
2answers
216 views

What is the appropriate way to retrieve the value of a C++ variadic template constant argument at position N?

I would like to know what is the correct way to retrieve the value of a variadic template constant argument at position N (N is known at compile time). For instance, let's say you have a template that ...
4
votes
2answers
111 views

Creating POD with variable number of elems

I would like to have a type, that would be in effect POD but I would like to be able to specify how and which types are in it, for example: template<Args...> struct POD { //here I would like to ...
4
votes
1answer
410 views

Does c++0x tuple use the new variadic templates or Boost's macro-fied tuple implementation?

I read it was based on Boost's version, but I wasn't quite sure what that meant when it came down to implementation. I know Boost does their own variadic template, but I would assume c++0x would use ...
4
votes
2answers
861 views

Is Boost.Tuple compatible with C++0x variadic templates?

I was playing around with variadic templates (gcc 4.5) and hit this problem : template <typename... Args> boost::tuple<Args...> my_make_tuple(Args... args) { return ...
4
votes
5answers
2k views

Is it possible to iterate over arguments in variadic macros?

I was wondering if it is possible to iterate over arguments passed to a variadic macro in C99 or using any GCC extensions ? For e.g. is it possible to write a generic macro that takes a structure and ...
3
votes
3answers
337 views

Is there a way to use C++ preprocessor stringification on variadic macro arguments?

My guess is the answer to this question is no, but it would be awesome if there was a way. To clarify, assume I have the following macro: #define MY_VARIADIC_MACRO(X...) // Does some stuff here in ...
3
votes
6answers
438 views

Creating a string list and an enum list from a C++ macro

In order to make my code shorter and easier to change I want to replace something like enum{ E_AAA, E_BBB, E_CCC }; static const char *strings{"AAA", "BBB", "CCC" }; With a macro, like INIT(AAA, ...
3
votes
3answers
375 views

Variadic macro trick

What's the trick to create a variadic macro FOO(a1,a2,a3,...,an) such that it expands to FOOn(a1,a2,a3,...,an) for values of n in whatever preselected bounded range you choose? That is, FOO(a) should ...
3
votes
2answers
812 views

Are Variadic macros nonstandard?

For debugbuilds, I usually use Clang, as it formats warnings and errors better, and makes it a little easier to track them down, and fix them. But recently after adding a Macro with variadic ...
3
votes
3answers
2k views

VS2010 C++ variadic template example

I have a class template and I can't seem to figure out how to perform a Variadic Template style instantiation. Here is the "code" so far of what I'm looking for: template<typename _Classname, ...
3
votes
4answers
276 views

Passing variadic class template's sub-classes to function that only accepts the base class (via parameter pack deduction/inference)

**I've gotten a few suggestions to make my function pure generic, which would work, but I'd prefer limiting the function to only accept Base and its children. Having trouble making a function that ...
3
votes
2answers
220 views

Function overloading where parameters only differ by ellipses

I've got this logging system for which I'm looking to shortcut some of the string manipulation. The logging system is used via functional macros which then forward to a single function call. E.g. ...
3
votes
1answer
381 views

Variadic macros with 0 arguments in C99

I have some debugging code that looks like the following: #define STRINGIFY(x) #x #define TOSTRING(x) STRINGIFY(x) #define AT __FILE__ ":" TOSTRING(__LINE__) void __my_error(const char*loc, const ...
3
votes
3answers
572 views

Variadic macros with zero arguments, and commas

Consider this macro: #define MAKE_TEMPLATE(...) template <typename T, __VA_ARGS__ > When used with zero arguments it produces bad code since the compiler expects an identifier after the ...
3
votes
1answer
183 views

Disambiguating argument-less function calls in variadic class hierarchies

I am trying to provide users of a class (MyGizmo below) that derives from a variadic hierarchy (ObjGetter below) with a simple, uncluttered way to unambiguously call a member function that takes no ...
3
votes
5answers
389 views

Strange behavior (SEGFAULT) of a C program using stdargs (va_start)

I wrote a variadic C function which mission is to allocate the needed memory for a buffer, and then sprintf the args given to this function in that buffer. But I'm seeing a strange behavior with it. ...
3
votes
2answers
503 views

Solving the mixin constructor problem in C++ using variadic templates

I've recently tackled the constructor problem, where various mixins classes that decorate each other (and a topmost host class) have different constructor signatures. To maintain a single constructor ...
3
votes
2answers
276 views

What does this compiler warning generated by `-pedantic` mean?

What does this GCC warning mean? cpfs.c:232:33: warning: ISO C99 requires rest arguments to be used The relevant lines are: __attribute__((format(printf, 2, 3))) static void cpfs_log(log_t level, ...
3
votes
1answer
231 views

C++0x passing arguments to variadic template functions

What does it mean to take a variable number of arguments by reference? Does it mean that each of the arguments are passed by reference? Consider for example the following functions which performs ...
3
votes
4answers
505 views

About variadic templates

I'm currently experiencing with the new c++0x variadic templates, and it's quite fun, Although I have a question about the process of member instantiation. in this example, I'm trying to emulate the ...
3
votes
2answers
899 views

Check if C++0x parameter pack contains a type

I was wondering if C++0x provides any built-in capabilities to check if a parameter pack of a variadic template contains a specific type. Today, boost:::mpl::contains can be used to accomplish this if ...
2
votes
1answer
77 views

How convert a D array to C variadic?

I would like convert an array in D of the form: string[] arrayStr = [ "hi, "is fun", "use D programming" ]; I have a C function which takes a C variadic: void c_func( const char* format, ... ); ...
2
votes
2answers
354 views

C++/C++11 - Switch statement for variadic templates?

Let's say I have a few structs like this: struct MyStruct1 { inline void DoSomething() { cout << "I'm number one!" << endl; } }; struct MyStruct2 { static int ...
2
votes
2answers
87 views

variadic aliases in .gdbinit?

Is this possible? To make a concrete example, consider the following macro: define pos po ([self $arg0]) end So now if I input pos text, it gets turned into po [self text]. But with multiple ...
2
votes
2answers
105 views

Calling a variadic function inside a variadic function in Javascript?

I have two function a() and b(), both are variadic functions, let say when I call function a() like this : a(arg0, arg1, arg2, arg3, ...., argn); then the function b() will be called as well inside ...
2
votes
1answer
259 views

Arguments after variadic arguments

Objective-C, or Cocoa specifically, supports variadic arguments, like for example class the method on NSString +(NSString *)stringWithFormat:(NSString *)string, ..... Now, what I would like to know ...
2
votes
2answers
154 views

Indexing using variadic templates

Let's say that I have a parameter pack I'm unrolling, e.g. template<typename... P> void f(P...&& args) { some_other_func(std::forward<P>(args)...); } Now let's say that I ...
2
votes
3answers
217 views

How do vararg functions find out the number of arguments in machine code?

How can variadic functions like printf find out the number of arguments they got? The amount of arguments obviously isn't passed as a (hidden) parameter (see a call to printf in asm example here). ...
2
votes
2answers
240 views

Compilation Error on Recursive Variadic Template Function

I've prepared a simple variadic template test in Code::Blocks, but I'm getting an error: No matching function for call to 'OutputSizes()' Here's my source code: #include <iostream> ...
2
votes
1answer
130 views

How to single out the first parameter sent to a macro taking only a variadic parameter

I try to get at the first actual parameter sent to a variadic macro. This is what I tried, and which does not work in VS2010: #define FIRST_ARG(N, ...) N #define MY_MACRO(...) ...
2
votes
3answers
220 views

Cocoa - Calling a variadic method from another variadic one (NSString stringWithFormat call)

I have a problem with [NSString strigWithFormat:format] because it returns an id, and I have a lot of code where I changed a NSString var to an other personal type. But the compiler does not prevent ...
2
votes
2answers
269 views

Restrict variadic function template to only accept variations of one variadic class template's nested variadic class template?

I have a variadic class template that has a nested variadic class template. The outer class template has a function template that accepts any number of arguments and will return an object of type ...
2
votes
2answers
338 views

Count of parameters in a parameter pack? Is there a C++0x std lib function for this?

I was just wondering if there was anything in the C++0x std lib already available to count the number of parameters in a parameter pack? I'd like to get rid of the field_count in the code below. I ...
2
votes
2answers
247 views

Applying a function to an arbitrarily long list of arguments

I want to create a function apply that takes a function with an arbitrary amount of arguments as well as a list of integers, and returns the result of the function (Where each integer in the list is ...
2
votes
1answer
245 views

Generic allocator class without variadic templates?

I am trying to write a generic allocator class that does not really release an object's memory when it is free()'d but holds it in a queue and returns a previously allocated object if a new one is ...
2
votes
2answers
318 views

What was the design decision for variadic functions needing an array?

I am curious and hopefully someone can shed somelight on this - but why do the C# functions that take 'params' have to be an array? I get that the objects in the parameters list are entered into an ...

1 2