Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
11
votes
9answers
282 views

Using function arguments as local variables

Something like this (yes, this doesn't deal with some edge cases - that's not the point): int CountDigits(int num) { int count = 1; while (num >= 10) { count++; num /= ...
9
votes
8answers
181 views

Assign function arguments to `self`

I've noticed that a common pattern I use is to assign SomeClass.__init__() arguments to self attributes of the same name. Example: class SomeClass(): def __init__(self, a, b, c): self.a = ...
8
votes
4answers
2k views

Maximum number of parameters in function declaration

I know that minimum number of parameters in function definition is zero, but what is the maximum number of parameters in function definition? I am asking the question just for the sake of knowledge ...
6
votes
2answers
80 views

Which approach is better for supplying compile time constants to a function ? Function argument vs. Template parameter

I have logging function being called at several places throughout the code. To every log, I have to supply 2 compile time constants. There are 2 approaches to accomplish: (1) Function argument: ...
5
votes
5answers
450 views

What is the easiest and most compact way to create a IEnumerable<T> or ICollection<T>?

So, many times we have a function that accepts an IEnumerable or ICollection as a parameter. In cases where we have single items, but no collection to hold them, we must create a collection before ...
5
votes
5answers
6k views

c# Enum Function Parameters

As a follow on from this question. How can I call a function and pass in an Enum? For example I have the following code: enum e1 { //... } public void test() { myFunc( e1 ); } public void ...
4
votes
5answers
107 views

passing a function as a parameter

void dispatch_for(dispatch_queue_t *queue, long number, void (* work)(long)){ int loop = number; int i; task_t *ctask; for(i = 0; i<loop;i++){ ctask = create_task((void ...
4
votes
2answers
301 views

passing a function which returns void but has integer arguments to another function as an ARGUMENT itself

I have recently started working on OpenCV using c++.I am having a problem with the following code. #include "cv.h" #include "highgui.h" int g_slider_position = 0; CvCapture* g_capture = NULL; void ...
4
votes
2answers
858 views

scala way to define functions accepting a List of different numeric types

I have the following problem: I have a function which takes a List[Double] as parameter, performs some arithmetic operations on the elements of the list and than return the result. I would like the ...
4
votes
5answers
838 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
6answers
7k views

C# enums as function parameters?

Can you pass a standard c# enum as a parameter? For example: enum e1 { //... } enum e2 { //... } public void test() { myFunc( e1 ); myFunc( e2 ); } public void myFunc( Enum e ) { ...
3
votes
2answers
230 views

c++0x: proper way to receive a lambda as parameter by reference

what is the right way to define a function that receives a int->int lambda parameter by reference? void f(std::function< int(int) >& lambda); or void f(auto& lambda); i'm not sure ...
3
votes
3answers
245 views

Python - use list as function parameters

How can I use a Python list (e.g. params = ['a',3.4,None]) as parameters to a function, e.g.: def some_func(a_char,a_float,a_something): # do stuff
3
votes
7answers
150 views

Is it bad form to have functions with a lot of parameters? What's the alternative?

I have a search function that queries the database and has ~15 optional parameters. Obviously this is not pretty and calling it is a bit of a mess. PHP does not allow overloading methods so I've ...
2
votes
5answers
92 views

C# Is it possible to abstract an orderby LINQ clause into a function paramater?

I have an ObservableCollection Bound to a WPF List View. I am looking to be able to sort the columns of the ListView control by clicking on the Column Header. To do this I am sorting the ...
2
votes
1answer
262 views

Default value for function parameters in VB6

How to specify default value for a parameter in VB6?
2
votes
2answers
464 views

How to find function parameters

I need to log all the function parameters in a dozen functions. Is there a way to pro grammatically determine all the parameters and their values (or at least their .ToString() value)? Perhaps via ...
1
vote
3answers
65 views

Passing inline double array as method argument

Consider method functionA (double[] arg) I want to pass a double array inline, like functionA({1.9,2.8}) and not create an array first and then pass it, like double var[] = {1.0,2.0}; ...
1
vote
1answer
36 views

Function call as default parameter - possible to use other parameters in the footprint?

Suppose I have the following function, the value it produces is needed by many other functions in the code: float mean(foo param1, bar param2); My other functions look like this: float foobar(foo ...
1
vote
4answers
96 views

Declaring parameter of an function as final, why and when is it needed?

Going through a tutorial for android (related to multithreading, loopers and handlers), i came across this: public synchronized void enqueueDownload(final DownloadTask task) My questions are: ...
1
vote
1answer
61 views

Setting local variables to a function instead of using globals optimize the function

In the documentation for the itertools module I found this comment def dotproduct(vec1, vec2): return sum(imap(operator.mul, vec1, vec2)) Note, many of the above recipes can be optimized by ...
1
vote
2answers
121 views

Classes as parameter of function c++

I wrote a bunch of crypto algorithms as classes and now I want to implement encryption modes (generalized modes shown in wikipedia, not the specific ones in the algorithms' specifications). How would ...
1
vote
3answers
175 views

Passing String as argument- getting segfault in function

SOLVED See bottom of question for solution. I'm having trouble with passing on a String argument to my function, and am getting a segmentation fault when the function is called. The program takes in ...
1
vote
2answers
212 views

How to declare a pointer to a variable as a parameter of a function in C++?

I have a function that takes a const D3DVECTOR3 *pos, but I have no reason to declare this beforehand. The most logical solution to me was using new: Function( //other parameters, new ...
1
vote
5answers
1k views

C: Function to swap values in 2D array

I'm trying to write a function to swap 2 elements in a 2D array: void swap(int surface[][], int x1, int y1, int x2, int y2) { int temp = surface[x1][y1]; surface[x1][y1] = surface[x2][y2]; ...
1
vote
4answers
1k views

How to take a typename as a parameter in a function? (C++)

I need to be able to pass a typename as a parameter: int X = FileRead(file, 9, char); The concept is for FileRead(std::fstream, int pos, ???) to read pos*sizeof(whatever the type is) to get the ...
1
vote
3answers
169 views

Is there an advantage to using parse_str for optional function parameters vs an array?

I happened to be making some changes to a WordPress blog and noticed that they use parse_str (http://php.net/parse_str) for parsing and setting their optional parameters to a function. I'm wondering ...
0
votes
1answer
51 views

Functions with parameters in TASM

Could you please post an example in assembly language that uses functions with parameters. Something simple, like function that returns a sum of two elements. Couldn't google any example that is ...
0
votes
3answers
60 views

Skipping optional function parameters in JavaScript

Could you please point me to the nice way of skipping optional parameters in JavaScript. For example, I want to throw away all opt_ parameters here: goog.net.XhrIo.send(url, opt_callback, ...
0
votes
5answers
92 views

Char has a different size than a string

I was working with a program that uses a function to set a new value in the registry, I used a const char * to get the value. However, the size of the value is only four bytes. I've tried to use ...
0
votes
3answers
59 views

Can $(this ) object be used to point to a function

I have a code something below: function showHideOptions() { $("#template1, #template2, #template3, #template4").css("display","none"); $(this).css("display","block"); } And I ...
0
votes
5answers
355 views

Toggle Multiple divs for show hide

ok, So I have multiple divs(7) which I want to toggle for show hide. If one div is open rest should hide and when I open a new div the others should hide. I have been able to accomplish this with the ...
0
votes
1answer
84 views

Using {{field}} as a parameter in Tempo (JavaScript/JSON)

Is it possible to use {{field}} as a parameter of a javascript function using Tempo? Something like, <ol id="marx-brothers"> <li data-template>{% getAge({{born}}) %}</li> ...
0
votes
2answers
94 views

How to pass a string with a few comma separated values as function parameters

For instance: $str = '1, 2, 4, 13'; I'd like the effect to be as if it were: func(1, 2, 4, 13)
0
votes
5answers
71 views

how to create a function to tell me if a statement throws an exception or not in c#

I'd like to have a function take a statement as a parameter, either as a string or as some other type that I'm not aware of, and return true if the execution of that statement throws an exception, and ...
0
votes
4answers
129 views

Accessing data members shadowed by parameters

In Java you can access variables in a class by using the keyword this, so you don't have to figure out a new name for the parameters in a function. Java snippet: private int x; public int setX(int ...
-1
votes
2answers
57 views

Passing values to a function from within a function in python

I need to pass values from one function to the next from within the function. For example (my IRC bot programmed to respond to commands in the channel): def check_perms(nick,chan,cmd): sql = ...
-2
votes
1answer
52 views

C++ Compilation error: Undefined identifier (for a function parameter)

I have a C++ class main.cpp in which I created a class like following: class MapSearchNode { public: unsigned int x; // the (x,y) positions of the node unsigned int y; MapSearchNode() { x = y = ...