Tagged Questions

functions that accept varying numbers of arguments -- for example, the function may be called with 1 argument or 2 arguments.

learn more… | top users | synonyms

34
votes
1answer
702 views

How to write a Haskell function that takes a variadic function as an argument

I'm trying to create a function that gets a variadic function as an argument, i.e. func :: (a -> ... -> a) -> a how can I accomplish this? I've read about polyvariadic functions and I'm ...
23
votes
1answer
1k views

Odd behavior when recursively building a return type for variadic functions

This is probably going to be a really simple explanation, but I'm going to give as much backstory as possible in case I'm wrong. Advanced apologies for being so verbose. I'm using gcc4.5, and I ...
17
votes
2answers
647 views

trailing return type using decltype with a variadic template function

I want to write a simple adder (for giggles) that adds up every argument and returns a sum with appropriate type. Currently, I've got this: #include <iostream> using namespace std; template ...
16
votes
1answer
514 views

How does Haskell printf work?

Haskell's type safety is second to none only to dependently-typed languages. But there is some deep magic going on with Text.Printf that seems rather type-wonky. > printf "%d\n" 3 3 > printf ...
16
votes
4answers
921 views

How to create a polyvariadic haskell function?

I need a function which takes an arbitrary number of arguments (All of the same type), does something whith them and afterwards gives a result back. A list of arguments is impracticable in my specific ...
14
votes
6answers
715 views

Why is such a function definition not allowed in haskell?

Shouldn't this definition be allowed in a lazy language like haskell in which functions are curried ? apply f [] = f apply f (x:xs) = apply (f x) xs It's basically a function which applies the ...
12
votes
4answers
440 views

Generate function of given arity in Haskell using type numbers

Assume I have encoded the natural numbers in Haskell types, and that I have a way of adding and subtracting from them: data Zero data Succ n -- ... I have seen various bits of code which create the ...
12
votes
4answers
3k views

Passing an ellipsis to another variadic function

I have approximately 30 variadic functions. Each one accepts a path as the final argument, i.e.: bool do_foo(struct *f, int q, const char *fmt, ...) In each function, I have to check that the ...
11
votes
1answer
2k views

How to “pass on” a variable number of arguments to NSString's +stringWithFormat:

I would like to write a function in Objective-C such as the one below, that takes a variable number of arguments, and passes those arguments on to +stringWithFormat:. I know about vsnprintf, but that ...
9
votes
5answers
178 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 ...
9
votes
3answers
378 views

Does printf(“%x”,1) invoke undefined behavior?

According to the C standard (6.5.2.2 paragraph 6) If the expression that denotes the called function has a type that does not include a prototype, the integer promotions are performed on each ...
8
votes
2answers
166 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> ...
7
votes
2answers
127 views

Haskell function that takes a variadic function as an argument (and returns something else than that func) without FlexibleInstances, pure Haskell2010

is it possible to express the following Haskell program without FlexibleInstances, i.e. in pure Haskell2010? {-# LANGUAGE FlexibleInstances #-} class Funk a where truth :: a -> [Bool] ...
6
votes
2answers
96 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
1answer
114 views

On creating variadic function with custom sentinel value

I've tried looking around the web to no avail. Is it possible to create a variadic function that has custom sentinel argument? The documentation on gnu's C states that if function has ...
6
votes
2answers
193 views

Haskell FFI Support for Functions With Variadic Arguments

Can anyone show me an example of using a C function with variadic arguments (e.g. printf) with Haskell's Foreign Function Interface? I tried searching the HaskellWiki, but found no such examples. ...
6
votes
2answers
227 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 ...
6
votes
7answers
368 views

how does printf know the address of a CString's character data?

Considering this code fragment: struct My { operator const char*()const{ return "my"; } } my; CStringA s( "aha" ); printf("%s %s", s, my ); // another variadic function to get rid of comments ...
6
votes
3answers
415 views

Qt and variadic functions

OK, before lecturing me on the use of C-style variadic functions in C++...everything else has turned out to require nothing short of rewriting the Qt MOC. What I'd like to know is whether or not you ...
6
votes
2answers
309 views

Is it possible to have a variadic function in C with no non-variadic parameter?

I have the following function: void doStuff(int unusedParameter, ...) { va_list params; va_start(params, unusedParameter); /* ... */ va_end(params); } As part of a refactor, I'd ...
5
votes
2answers
133 views

How to pass one or none variable arg in scala?

Having, def test(args: Any*) = args.size I'd like to call it with empty argument list depending on condition, but avoid if/else. I've come out with this solution: test(List("one").filter( _ => ...
5
votes
1answer
87 views

What's wrong with this use of rest params with defprotocol and defrecord in Clojure?

What's wrong with the below use of rest params with defprotocol and defrecord in Clojure? (defprotocol prot (f [this] [this & rest])) (defrecord rec [] prot (f [this] "one arg") (f [this ...
5
votes
3answers
128 views

Passing variadic arguments in one function to another function in D

I have a variadic D-style function foo(format, ...), which is a wrapper around writefln. I'd like to do something like this: foo(format, <...>) { //... writefln(format, ...); } ...
5
votes
2answers
189 views

Is there a difference in Scala between Seq[T] and T*?

My IDE's tooling shows that xs has type Int* in the following snippet: def accept(xs: Int*) = true The language reference, however, says that a repeated parameter declared as T* has type Seq[T]. Is ...
5
votes
4answers
169 views

To invoke a variadic function with unamed arguments of another variadic function

I have two variadic function as foo(format, ...) and bar(format, ...). I want to implement function foo so that it can invoke bar with the same list of arguments it has. That is, foo(format...) { ...
5
votes
2answers
609 views

What is the format of the x86_64 va_list structure?

Anyone have a reference for the representation of va_list in the x86_64 ABI (the one used on Linux)? I'm trying to debug some code where the stack or arguments seem corrupt and it would really help to ...
5
votes
5answers
497 views

What is the purpose of the h and hh modifiers for printf?

Aside from %hn and %hhn (where the h or hh specifies the size of the pointed-to object), what is the point of the h and hh modifiers for printf format specifiers? Due to default promotions which are ...
5
votes
1answer
305 views

Problem passing a reference as a named parameter to a variadic function

I'm having problems in Visual Studio 2003 with the following: void foo(const char*& str, ...) { va_list args; va_start(args, str); const char* foo; while((foo = va_arg(args, ...
5
votes
1answer
256 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 ?
5
votes
1answer
239 views

How can arguments to variadic functions be passed by reference in PHP?

Assuming it's possible, how would one pass arguments by reference to a variadic function without generating a warning in PHP? We can no longer use the '&' operator in a function call, otherwise ...
5
votes
2answers
1k views

Ellipsis notation in C#?

Where can I get info about implementing my own methods that have the ellipsis notation, e.g. static void my_printf(char* format, ...) { } Also is that called ellipsis notation or is there a ...
5
votes
3answers
599 views

sscanf wrapping function to advance string pointer in C

I have a function that makes a series of calls to sscanf() and then, after each, updates the string pointer to point to the first character not consumed by sscanf() like so: if(sscanf(str, "%d%n", ...
4
votes
2answers
69 views

Variadic list constructor, how to default to the correct type and get type safety

Here's what I've got: {-# LANGUAGE MultiParamTypeClasses , FlexibleInstances #-} class ListResultMult r a where lstM :: a -> [a] -> r listM :: ListResultMult r a => a -> r ...
4
votes
3answers
103 views

Better way to work around lack of vwscanf in Visual C++?

The C++11 standard specifies that vwscanf is available via header <cwchar> (and therefore <wchar.h>). However it seems to be lacking in Visual C++. With that function I could write ...
4
votes
2answers
142 views

Why are many Clojure functions variadic?

Here's an issue I keep running into in Clojure: user=> (max [3 4 5 6 7]) [3 4 5 6 7] ; expected '7' Some functions don't do what I expect! Here's one solution using apply: user=> (apply max ...
4
votes
3answers
34 views

Variable-length by-ref argument lists in functions

In PHP you can do this: function something() { foreach (func_get_args() as $arg) echo $arg; } something(1, 3); //echoes "13" This works fine for arguments passed by value, but what if I want ...
4
votes
5answers
111 views

Why variadic functions require at least two arguments?

I'm trying to plug a hole in my knowledge. Why variadic functions require at least two arguments? Mostly from C's main function having argc as argument count and then argv as array of arrays of chars? ...
4
votes
1answer
91 views

stdarg and NULL arguments

I want a function that, when called with a varying number of arguments, return the first non-NULL one. I've tried this, but it core dumps on for loop: char *first(char *args, ...) { va_list ap; ...
4
votes
2answers
558 views

Unpacking Argument List with Variadic Template

I'm trying to create a C++ convenience wrapper around an old C-API that uses an opaque data type. There's one particular C-function which takes a format string, along with a variable number of ...
4
votes
3answers
340 views

Smalltalk Variadic functions

Does Smalltalk(especially Squeak/Pharo) have some form of variadic functions? I was just reading about the power of designing your own control statments in smalltalk and while I'm a big fan of ...
4
votes
5answers
839 views

PHP: variable-length argument list by reference?

Is it possible to create a PHP function that takes a variable number of parameters all of them by reference? It doesn't help me a function that receives by reference an array of values nor a function ...
4
votes
1answer
636 views

Variable Argument Lists in C++/CLI

How do I create a function which accepts a variable argument list in C++/CLI? I am looking to create a function which forwards most of it's arguments to String::Format.
3
votes
3answers
130 views

What was the origin of Variadic Functions?

Did Variadic functions originate from a specific language, from math, from an scientific article...? Any idea?
3
votes
3answers
161 views

Gluing a variadic template to a variadic function

In an attempt to bypass GCC's unimplemented always-inlining variadic functions in libc++, I thought I could maybe wrap the variadic functions (like snprintf, more precisely, the *_l variant) in a ...
3
votes
6answers
215 views

variadic function - how to ensure parameters passed correctly

Is there any way (built-in or a code pattern) to ensure that a variadic function is passed the correct number of parameters? (This will be included as part of an API obviously, I can check my own ...
3
votes
2answers
310 views

c++ template functions with variable arguments

Is it possible to write a c++ template function which takes a variable number of input variables of different types (number of input can be limited to say 10)? For example take a function sql_exec() ...
3
votes
2answers
225 views

C Variadic function in a C++ wrapper

I am rewriting a C wrapper around a C Python API (Python 1.5) and I noticed that the function Py_VaBuildValue uses variadic number of args. I wondered if I have to use the same in my C++ function ...
3
votes
4answers
374 views

How to pass variable number of args to a variadic function

I have a variadic function with the signature: - (id)initWithNumVertices:(NSUInteger)inCount, ...; But I cannot figure out how to construct the ellipsis part from a variable number of vertices. How ...
3
votes
3answers
191 views

Overriding a variadic method in objective-c

When subclassing in objective-c, how can I forward a call to the superclass in the case of a variadic method. By what should I replace the ??? below to send all the objects I got? - (void) ...
3
votes
1answer
582 views

Variable Argument lists with boost?

I wanted to write a function with a variable argument list. I want to explore my options. I'm pretty sure I came accross a boost template class that was designed for this purpose, but I can't think of ...

1 2 3