The variadic tag has no wiki summary.
-2
votes
0answers
45 views
Hello I have a related to one of your answer. Thank your for your time [duplicate]
Hello I have a question related to one of your answer.
In this code it's your original code and i didn't modify it.
When I call: a7[0][1][100];
I am able to obtain the first index '0' in the ...
2
votes
3answers
165 views
C++ templates: how can correct template argument be inferred with variadic arguments?
I have the following template function:
template <typename...Args, typename Func>
void call(const char *name, Args...args, Func f)
{
f(3);
}
When I try to use it, like
...
1
vote
0answers
120 views
Variadic lambdas in C++1y [closed]
Looking at Faisal’s implementation, generic lambdas seem to make a huge step forward for the next standard. Is there also a proposal on the table to not only support generic lambdas but make them ...
1
vote
2answers
87 views
c variadic functions confusion
I'm trying to figure out what's behind va_start(), va_arg() macroses. The code below works well.
#include <iostream>
#include <cstdarg>
void f(double a, double b, ...)
{
va_list arg;
...
1
vote
3answers
87 views
A variadic function with different types, passing to a threaded cout
Alright, first of all so far this works, but is extremely buggy. I want it to be able to take ints, floats, doubles, strings, and char*s. It sort of works by trying everything as a char* but if that ...
20
votes
1answer
417 views
GCC 4.8 is reversing variadic template parameter pack
I just upgraded to GCC 4.8 and some variadic template code no longer compiles correctly. I've created a minimal example below:
#include <tuple>
#include <iostream>
template <class T, ...
2
votes
4answers
99 views
C++ and preprocessor macros: variadic type
Take for example the following macro:
#define _CREATE_VAR(X1) double X1{smc::define_variable (data, X1, #X1)};
#define _CREATE_VAR2(X1,X2) double X1{smc::define_variable (data, X1, #X1)}; /
...
5
votes
1answer
246 views
C++11 type trait to differentiate between enum class and regular enum
I'm writing a promotion template alias similar to boost::promote but for C++11.
The purpose of this is to avoid warnings when retrieving arguments from varidic functions. e.g.
template <typename ...
1
vote
4answers
133 views
Templates accepting “anything” in C++
I have a simple template struct associating a string with a value
template<typename T> struct Field
{
std::string name; T self;
}
I have a function that I want to accept 1-or-more Fields ...
2
votes
4answers
132 views
A clean way to store a function and its (arbitrary-type, arbitrary-number) arguments
For a library, I'd like a function to accept another function and its arguments, then store them all for calling later. The arguments must allow for any mixture of types, but the functions only need ...
3
votes
4answers
164 views
C++ variable arguments
I have a class with a state machine, and want to have a single point of entry to pass events to the state machine. The event is accompanied with event specific data, which I then want to dispatch to ...
0
votes
2answers
121 views
Passing variable arguments in a C++ variadic template
Say I have a template function that accepts variable arguments and calls other functions with those arguments...
template<typename... A> func(int i, A... args)
{
// do something common
...
0
votes
2answers
114 views
How to expand variadic arguments in a macro?
I want to essentially have a macro shortener.
The macro, FOO(A,B,C) should expand to
defined(_FOO_A) || defined(_FOO_B) || defined(_FOO_C).
Is that possible in GCC using variadic macro arguments and ...
1
vote
1answer
75 views
Can I create a prototype for a variadic Python function using ctypes so that a DLL can call this function as a callback?
Here's the scenario: I am using ctypes to load a C DLL into a Python program. I want to register a callback so that code in the DLL can call a function in Python.
This is all great until I want to ...
2
votes
2answers
161 views
In plpgsql, how can I create and execute a command-string using on a variable number of identifiers?
In postgres 9.1 I'd like to create a function that takes an index name, a table name and a variable number of columns, constructs an index, and then does some other things.
My current approach is to ...
0
votes
3answers
65 views
formating with variadic variables
c89
gcc 4.7.4
Hello,
I was just experimenting with macros like these:
#define LOG_INFO_1(fmt, ...) printf(fmt, __VA_ARGS__)
#define LOG_INFO_2(...) printf(__VA_ARGS__)
And using like this:
...
1
vote
1answer
196 views
Variadic Function in Scheme
I have to define a variadic function in Scheme that takes the following form:
(define (n-loop procedure [a list of pairs (x,y)]) where the list of pairs can be any length.
Each pair specifies a lower ...
2
votes
2answers
336 views
Scheme How do I handle an unspecified number of parameters?
For example ((fn-stringappend string-append) "a" "b" "c") I know how to handle this (f x y z). But what if there's an unknown number of parameters? Is there any way to handle this kind of problem?
6
votes
2answers
336 views
How to write C function accepting (one) argument of any type
I am implementing simple library for lists in C, and I have a problem with writing find function.
I would like my function to accept any type of argument to find, both:
find(my_list, 3) and ...
1
vote
2answers
147 views
Simplify __VA_ARGS__ issue: cannot extract NULL
i got the following code:
header file:
#define html(...) anyHtml(__VA_ARGS__, NULL);
const char* Html::anyHtml(const char* arg, ...);
#define body(cssClass, ...) anyBody(cssClass, __VA_ARGS__, ...
1
vote
3answers
229 views
How can i generate variadic macro for concatenate string
I got stuck here...
#define CONCAT(a,b) BOOST_PP_STRINGIZE(BOOST_PP_CAT(a,b))#define CONCAT1(a,b,c) CONCAT(CONCAT(a,b),c) and so on. How i can to generate the CONCAT macro even if 20 arguments? May ...
1
vote
3answers
637 views
Macro to count number of arguments
I have a variadic function from a third-party C library:
int func(int argc, ...);
argc indicates the number of passed optional arguments.
I'm wrapping it with a macro that counts the number of ...
3
votes
2answers
322 views
Is it possible to generate a parameter pack?
Consider the following pseudo code :
template<class... T>
struct worker : unique<T...>::type...{};
struct x{};
struct y{};
struct z{};
Is it possible to write a template unique such ...
12
votes
1answer
341 views
C++ variadic template unusual example
What does the following construction mean?
#include <iostream>
template <int ...> struct s;
int main() {
int i = s<,>::xxx;
std::cout << i << std::endl;
}
...
3
votes
1answer
92 views
Variadic function in obj-C skips first argument
I'm having a problem passing a variable number of parameters to the function:
-(void)addCharacterToScene:(NSString *)name withFrames:(CCSpriteFrame*)frames,... {
va_list args;
va_start(args, ...
2
votes
1answer
223 views
Concatenation of tokens in variadic macros
In C, is it possible to concatenate each of the variable arguments in a a variadic macro ?
Example:
MY_MACRO(A, B, C) will yield HDR_A, HDR_B, HDR_C
MY_MACRO(X, Y) will yield HDR_X, HDR_Y
The ...
0
votes
2answers
150 views
Variadic function va_arg() returning incorrect parameters
Problem Partically solved: please read bottom
The variadic function in question, stripped down to the bare simplest is:
inline Variant::Variant(int type, int dims, ...)
{
va_list ap;
va_start ...
2
votes
1answer
160 views
Can variadic expansions be used as a chain of comma-operator calls?
I was looking at "How to properly use references with variadic templates," and wondered how far comma expansion can go.
Here's a variant of the answer:
inline void inc() { }
template<typename ...
1
vote
7answers
420 views
Call function with (unknown) variable number of parameters?
I'm need to send params to the function
array_intersect_key()
but sometimes i'm need to send 2 arrays, sometimes - 3 or more:
array_intersect_key($arr_1, $arr_2);
OR
array_intersect_key($arr_1, ...
1
vote
1answer
161 views
How to create a templated function taking a variable number of arguments that passes the arguments to an object's correct constructor?
I have the following templated function...
template< class T > T *create_object( lua_State *L )
{
// Get a raw block of memory, managed by Lua.
void *mem = lua_newuserdata( L, ...
9
votes
1answer
238 views
Variadic compose function?
I'm trying to write a variadic function composition function. Which is basically the (.) except that the second argument function is variadic. This should allow expressions like:
map even . zipWith ...
1
vote
1answer
193 views
How to override a variadic method in Objective-C
I'm trying to extend a class that has a variadic method such as:
- (void)someMethod:(id)arguments, ... ;
and in the subclass override it by calling the original method like:
- ...
0
votes
1answer
279 views
convert array of variants to std::tuple
I am working on a C++11 wrapper for a variant type implemented in C. The variant type supports common data types like int, float, string, but also tuples. I have converters for the basic types of ...
2
votes
1answer
187 views
Wrapping any API Function
I'm wrapping the Windows API, and I wish to make error checking easy to use, and helpful. Currently, I have a global error object, with a function set to handle a new error. The set function takes ...
4
votes
3answers
220 views
Repeated use of a variadic function argument doesn't work
I have a function that tries to log stuff to the console and also to a log file, but it doesn't work. The second use of the variable length argument gives garbage written to the console. Any ideas? ...
6
votes
4answers
575 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?
0
votes
2answers
217 views
tuple as function argument
I am a little confused if it possible an how to use a variadic tuple as an argument in a function and how to initialize it.
template <typename T, Arg ...>
void foo (int a, ...
1
vote
1answer
194 views
Swallowing comma in variadic macros on compilers that do not recognise ##
I need to write a variadic macro in C which must take zero or more arguments.
In gcc, that can be achieved by adding "##" after the comma, e.g. ,##____VA_ARGS____ as answered in Variadic macros with ...
0
votes
2answers
115 views
C++ function to create and destroy temporary with given type and constructor parameters
I'm finding a lot of the following in my code:
{
SomeClass<VisitorType> obj(visitor, param1, param2, 3, 4);
}
{
OtherClass<VisitorType> obj(visitor, 5, "six");
}
The braces are ...
2
votes
1answer
112 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, ... );
...
1
vote
2answers
701 views
C++ variadic function templates
The concept of variadic templates is quite confusing to me and I want to make it a bit more complex (well I think...).
Let us consider the following code:
template <typename T>
class base
{
...
6
votes
2answers
2k 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 ...
0
votes
1answer
202 views
C variadic functions how to get string from input
I want to get a string (const char*) from my variadic function input values.
But this code below doesn't work..... A runtime error is the result
void print(const char fmt[], ...) {
va_list ap;
...
14
votes
3answers
848 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 ...
2
votes
2answers
170 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 ...
1
vote
2answers
364 views
C - Passing va_list to a sentinel-terminated function - need wrapper for execlp()
I am trying to write a wrapper for execlp().
Why doesn't this work? Is it the sentinel?
int vExeclp(const char *file, const char *arg, va_list argptr)
{
int returnValue = 0;
returnValue = ...
5
votes
2answers
422 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 ...
6
votes
1answer
368 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 ...
0
votes
1answer
175 views
Is this variadic template argument deduction correct?
I've been experimenting with variadic templates and argument forwarding. I think I've found some inconsistent behaviour.
To illustrate, this program:
#include <iostream>
#include ...
2
votes
1answer
508 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 ...
