functions that accept varying numbers of arguments -- for example, the function may be called with 1 argument or 2 arguments.
6
votes
1answer
185 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 ...
0
votes
0answers
28 views
Compiling variadic (…) + va_list with tcc
I am having some trouble compiling a variadic function with tcc (0.9.26; x86-64 Linux).
I wildly postulate that the culprit is tcc and stdarg-macros.
However, 99.999% of the times when people blame ...
1
vote
2answers
77 views
Calling C functions with too many arguments
I am currently changing the function signatures of a class of functions in an application. These functions are being stored in a function table, so I was expecting to change this function table as ...
-5
votes
0answers
66 views
C/C++ function prototypes and pushing arguments around [closed]
Can be the type name(){} which I use it in C for dynamic loading with unknown arguments. For variadic function how and what it does? I don't use it for this it is example
Can be the variadic ...
1
vote
1answer
41 views
Why is va_arg returning NULL at the end of a variable argument list of type char*?
This is what has been said about va_arg in the reputed link below:
http://www.cplusplus.com/reference/cstdarg/va_arg/
Notice also that va_arg does not determine either whether the retrieved argument ...
4
votes
1answer
133 views
How are `std::initializer_list` values passed by the compiler? (Or: how can I get around a universal overload with one?)
Continuing my saga, I've realized that I can make overloads of my access functions, using a single std::initializer_list parameter instead:
class array_md
{
//...
my_type & ...
2
votes
3answers
100 views
Iterating a va_list when passed as a parameter to a method in Objective-C
I would like to pass a variable argument list from one method (functionOne) to another (functionTwo). Everything works fine, except that I have not been able to figure out how to setup the va_list in ...
0
votes
2answers
48 views
How to create a constructor that takes multiple arguments?
I have a certain class and i'm having difficulty setting up the__init__ constructor. I need it to take in zero or more strings as arguments, each giving a city name and state abbreviation, and ...
1
vote
6answers
85 views
Possible to pass arguments inputted at run-time?
In C we can have variadic functions like:
void abc(int x, .. )
{
}
and we can call them with variable number of arguments like:
abc(1,2,3) or abc(1,2,3,4,5)
But, in both of the above function ...
0
votes
3answers
35 views
Formatted Logging with parameters not working
I'm writing in VC++ with VS2012 pro and trying to get my logger to output something like this
03/26/2013 Registry()+
03/26/2013 Registry::LoadDWORD("VersionNumber")+;
03/26/2013 Registry(3)-
...
15
votes
2answers
1k views
Why use variadic arguments now when initializer lists are avaiable?
I've been wondering what are the advantages of variadic arguments over initializer lists. Both offer the same ability - to pass indefinite number of arguments to a function.
What I personally think ...
1
vote
2answers
53 views
Simple Variadic C Function Parameters Error
I have a very simple code. This code working on Linux Machine.
But When I build with a Cross Compile and run on a Embbedded Hardware parameter, Values of variadic functions are wrong.
Is it about ...
2
votes
1answer
67 views
Two variadic templates for a single function?
In C++11 is it possible to have two variadic templates for a single function ?
If not, is there a trick to write something like that :
template <class... Types, class... Args>
void f(const ...
0
votes
5answers
107 views
Why isn't Math.max(double a, double b) varadic?
Why isn't the implementation of Math.max a variadic function?
It could get implemented like this:
public class Main {
public static double max(double... values) {
double max = ...
1
vote
1answer
56 views
Variadic function - how to get number of var_args?
Can this be done at all? Is there, for example, some sort of va_num_args?
Basically, I am logging events across a serial port in a prinf() like manner, taking a format string and, optional ly, some ...
1
vote
5answers
63 views
Unpacking an array into method arguments
As you know C# supports variadic methods through the params keyword:
int Add(params int[] xs) {
return xs.Sum();
}
Which can then be called with any number of arguments you like:
Add(1);
...
7
votes
1answer
221 views
How to write a variadic method which replaces chained method calls?
I am working on a recursive map class called group_by which models the SQL namesake.
For example, gb is a group_by object which will store pointers to foo grouped by std::string, int, and char key ...
3
votes
1answer
107 views
Foreach equivalent on variadic function [duplicate]
Did some searching and couldn't find an answer to this question so apologies if a repost. I want to call the same function with the same arg on a bunch of different objects. I currently implemented it ...
1
vote
2answers
67 views
How to wrap variadic function with unknown types?
I have a function in a lib that takes a message and variadic parameters and print them like printf.
for e.g.:
printMe(const char *fmt,...);
I'm trying to wrap this function. I don't know what is ...
0
votes
1answer
119 views
C++ variadic template function parameter with default value
I have a function which takes one parameter with a default value. Now I also want it to take a variable number of parameters and forward them to some other function. Function parameters with default ...
-4
votes
1answer
64 views
free all arguments in variadic function - c
i have a mission to create function which receives variable number of arguments and free all of them, any type of arguments.
I tried to do it using a variadic function, but the thing is I do not know ...
0
votes
1answer
90 views
C++ why does va_start expect the last non-variadic function argument?
I'm using Visual Studio 2012 to compile this sample code:
#include <stdarg.h>
#include <stdio.h>
const char * __cdecl foo(const char * format, const char * requiredArgument, ...)
{
...
0
votes
3answers
108 views
Variadic Adding Function C
I'm writing a simple variadic function that adds together a series of ints and returns the sum. I'm having a bit of trouble understanding how it works and my code doesn't seem to work though I feel ...
2
votes
1answer
61 views
Variadic function declaration VS a function taking a list
While designing a class or a function, which way, that is shown below, is better and why?
class Container {
//Provide this functionality??
void addItemVariadic(const Value& val, ...);
...
3
votes
3answers
70 views
Returning a list of variables from a variadic function in a batch file
I have a function that takes a variable number of arguments. Each argument is a reference that the function will modify directly. Here is how I call the function:
set "A=" && set "B=" ...
11
votes
5answers
1k views
Inserting a variadic argument list into a vector?
Forgive me if this has been answered already, as I couldn't find it...
Basically I have an object that needs to take a variadic argument list in it's constructor and store the arguments in a vector. ...
0
votes
1answer
14 views
Object method does not receive variadic parameters
This works.
string = <div>foo</div><br /><div>bar</div><br />
ModifyText(string, {"<br\s\/?>": "REPLECED`r`n", "<div>": "<p>", "</div>": ...
3
votes
2answers
123 views
What is the Scala syntax for calling a function with variadic arguments but with named arguments?
Say I have a function
def f(a:Int = 0, b:String = "", c:Float=0.0, foos: Foo*) { ... }
Notice the use of default arguments for some parameters. Typically, to make use of default values, you invoke ...
2
votes
2answers
136 views
How would I 'generate variadic parameters'?
I need a way to pass a variable amount of parameters to a function in this circumstance:
template<typename ...T>
struct Lunch
{
Lunch(T...){}
};
template<typename T>
T ...
4
votes
2answers
322 views
(Im)perfect forwarding with variadic templates
Synopsis
Given a type with a variadic template constructor that forwards the arguments to an implementation class, is it possible to restrict the types being forwarded with SFINAE?
Details
First, ...
3
votes
3answers
156 views
Computing a function over variadic templates
I am trying to figure out which is the most idiomatic way implement a function over a variadic type list. For example, computing the maximum size of all the types. I understand there exist several ...
2
votes
2answers
122 views
Mapping a table into map using variadic templates and boost
I am trying to copy a database table in a map where its the primary key will be the key of map and the rest of the columns are instances of boost:vector. I am new to boost as well as variadic ...
0
votes
2answers
219 views
Objective-c : Accessing variadic arguments in method [duplicate]
Possible Duplicate:
How to create variable argument methods in Objective-C
Variable number of method parameters in Objective C - Need an example
Following is an example of a method having ...
0
votes
0answers
60 views
Call a variadic template function with a tuple? [duplicate]
Possible Duplicate:
How do I expand a tuple into variadic template function's arguments?
Currently, I have function of the form :
template<typename Type, typename... List>
void ...
2
votes
2answers
331 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
1answer
289 views
Go — variadic functions parameters pass-through
I'm trying to write simple fmt.Fprintf wrapper which takes variable number of arguments, here is the code:
func Die(format string, args ...interface{}) {
str := fmt.Sprintf(format, args)
...
8
votes
1answer
258 views
Haskell: how to write a monadic variadic function, with parameters using the monadic context
I'm trying to make a variadic function with a monadic return type, whose parameters also require the monadic context. (I'm not sure how to describe that second point: e.g. printf can return IO () but ...
3
votes
1answer
364 views
C++11: Variadic Template Function Parameter Pack Expansion Execution Order
Consider the following code:
template<class T>
size_t f(T t, size_t& x) { return x++; }
template<class... Args>
void g(Args... args)
{
size_t x = 0;
size_t y[] = { f(args, ...
7
votes
1answer
419 views
C++11: Number of Variadic Template Function Parameters?
How can I get a count of the number of arguments to a variadic template function?
ie:
template<typename... T>
void f(const T&... t)
{
int n = number_of_args(t);
...
}
What is ...
5
votes
3answers
105 views
Bourne shell: send arguments $2 to $N to variadic function?
Google has finally failed me. I cannot seem to find how to do this in Bourne shell scripting:
I am writing a shell script to handle all of my testing for a project. I've set up functions for each ...
2
votes
2answers
231 views
Scala variadic functions and Seq
As far as I know, traits like List or Seq are implemented in the Scala standard library instead of being part of the language itself.
There is one thing that I do not understand, though: one has a ...
3
votes
2answers
95 views
no matching function for call to a variadic parameter pack function
Consider:
#include<tuple>
template<int N,typename... Vs,typename... Ts>
void fog( const std::tuple<Vs...>& vs , const std::tuple<Ts...> & ts )
{
}
...
20
votes
4answers
504 views
Which method is called? (Integer… a) vs. (int a, int b)
I just found out about a very interesting Java trick:
void method1(Integer... a){
}
So you can give this method as many integers as you want.
Now if I have a similar (overloaded) method like this:
...
4
votes
2answers
169 views
In C, is it ever safe to cast a variadic function pointer to a function pointer with finite arguments?
I want to create a function pointer to a function that will handle a subset of cases for a function that takes a variable parameter list. The use case is casting a function that takes ... to a ...
3
votes
2answers
471 views
How to determine if va_list is empty
I have been reading that some compilers support va_list with macros and users were able to overload the functionality with other macros in order to count the va_list.
With visual studio, is there a ...
1
vote
2answers
273 views
Adding an arbitrary number of functions into a function handle MATLAB
I'm trying to generate .bmp graphics in MATLAB and I'm having trouble summing functions together. I'm designing my function such that given an arbitrary set of inputs, my function will add an ...
2
votes
1answer
78 views
Variadic Function Not Parsing Arguments Correctly
I'm trying to make a simple addition calculator in C to learn how to work with indefinite arguments. The following compiles correctly but the output is always incorrect and I don't know enough to ...
2
votes
2answers
516 views
Variadic function (va_arg) doesn't work with float?
I have a variadic function which takes a float parameter. Why doesn't it work?
va_arg(arg, float)
3
votes
2answers
203 views
How to make a function of variable arity in Erlang?
I have an algorithm that finds the minimum of function/n on Rn. And I have a constrain manifold, that is given in a form of singular cube image. Mapping singular cube inner space to Rn and more ...
5
votes
1answer
137 views
Sequencing among a variadic expansion
For this non-variadic example:
int Func1();
double Func2();
void MyFunc( int, double );
int main()
{
MyFunc( Func1(), Func2() );
//...
}
it's not specified whether Func1() or ...



