Tagged Questions

A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

87
votes
10answers
2k views

Why are the built in functions in PHP named so randomly?

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type ...
75
votes
5answers
22k views

Why was the arguments.callee.caller property deprecated in JavaScript?

Why was the arguments.callee.caller property deprecated in JavaScript? It was added and then deprecated in JavaScript, but it was omitted altogether by ECMAScript. Some browser (Mozilla, IE) have ...
67
votes
26answers
6k views

Should functions return null or an empty object?

What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other? Consider this: public UserEntity ...
66
votes
3answers
47k views

How do you pass a function as a parameter in C?

I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
64
votes
6answers
75k views

Getting a better understanding of callback functions in JavaScript

I understand passing in a function to another function as a callback and having it execute, but I'm not understanding the best implementation to do that. I'm looking for a very basic example, like ...
61
votes
4answers
8k views

What is the difference between call and apply?

What is the difference between using call and apply to invoke a function? var func = function(){ alert('hello!'); }; func.apply(); vs func.call(); Are there performance differences between ...
60
votes
5answers
5k views

What is the difference between a 'closure' and a 'lambda'?

Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused. And now that we're here, how do they differ from a regular function?
55
votes
17answers
24k views

What is the difference between a method and a function

I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons. I am having trouble getting my head ...
46
votes
4answers
9k views

Simplest/Cleanest way to implement singleton in JavaScript?

What is the simplest/cleanest way to implement singleton pattern in JavaScript?
46
votes
5answers
1k views

Arguments or parameters?

I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world. What's the correct convention for their use?
45
votes
7answers
6k views

Is there a better way to do optional function parameters in Javascript?

I've always handled optional parameters in Javascript like this: function myFunc(requiredArg, optionalArg){ optionalArg = optionalArg || 'defaultValue'; //do stuff } Is there a better way to ...
43
votes
10answers
8k views

Javascript curry - what are the practical applications?

I don't think I've grokked currying yet. I understand what it does, and how to do it. I just can't think of a situation I would use it. Where are you using currying in javascript (or where are the ...
41
votes
2answers
1k views

How do I inherit javascript functions ?

// Don't break the function prototype. // pd - https://github.com/Raynos/pd var proto = Object.create(Function.prototype, pd({ "prop": 42 })); var f = function() { return "is a function"; }; ...
41
votes
3answers
22k views

How to get the function name as string in Python?

In Python, how do I get the function name as a string without calling the function? def my_function(): pass print get_function_name_as_string(my_function) # my_function is not in quotes should ...
40
votes
9answers
26k views

JQuery pass more parameters into callback

Is there a way to pass more data into a callback function in Jquery? I have two functions and I want the callback to the $.post, for example, to pass in both the resulting data of the AJAX call, as ...
39
votes
3answers
4k views

Why are Perl 5's function prototypes bad?

In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one." Can anyone elaborate on why this might ...
36
votes
16answers
3k views

Is there any way a C/C++ program can crash before main()?

Is there any way a program can crash before main()?
36
votes
11answers
7k views

What is the naming convention in Python for variable and function names?

Coming from a C# background the naming convention for variables and method names are usually either CamelCase or Pascal Case: // C# example string thisIsMyVariable = "a" public void ThisIsMyMethod() ...
34
votes
5answers
8k views

JavaScript function aliasing doesn't seem to work

I was just reading this question and wanted to try the alias method rather than the function-wrapper method, but I couldn't seem to get it to work in either Firefox 3 or 3.5beta4, or Google Chrome, ...
31
votes
3answers
25k views

How can I pass a reference to a function, with parameters?

I need to able to pass a reference to a function with a given set of parameters. Here is an example of passing a reference without parameters: var f = function () { //Some logic here... }; var ...
30
votes
11answers
1k views

What is the point of function pointers?

I have trouble seing the utility of the function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a ...
27
votes
3answers
4k views

`new function()` with lower case “f” in JavaScript

My colleague has been using "new function()" with a lower case "f" to define new objects in JavaScript. It seems to work well in all major browsers and it also seems to be fairly effective at hiding ...
26
votes
11answers
4k views

Why C# is not allowing non-member functions like C++

C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports ...
26
votes
7answers
14k views

How to turn a String into a javascript function call?

I got a string like: settings.functionName + '(' + t.parentNode.id + ')'; that I want to translate into a function call like so: clickedOnItem(IdofParent); This of course will have to be done in ...
25
votes
5answers
374 views

Why is foo(*arg, x) not allowed in Python?

Look at the following example point = (1, 2) size = (2, 3) color = 'red' class Rect(object): def __init__(self, x, y, width, height, color): pass It would be very tempting to call: ...
25
votes
14answers
2k views

What are some interesting uses of high order functions?

I'm currently doing a Functional Programming course and I'm quite amused by the concept of high-order functions and functions as first class citizens. However, I can't yet think of many practically ...
25
votes
4answers
2k views

What does the exclamation mark do before the function?

!function () {}();
25
votes
9answers
44k views

How to change onClick handler dynamically?

I'm sure there are a million posts about this out there, but surprisingly I'm having trouble finding something. I have a simple script where I want to set the onClick handler for an <A> link ...
22
votes
8answers
45k views

strdup() - what does it do in C?

What is the purpose of the strdup() function in C?
22
votes
11answers
17k views

How to Truncate a string in PHP to the word closest to a certain number of characters?

I have a code snippet written in PHP that pulls a block of text from a database and sends it out to a widget on a webpage. The original block of text can be a lengthy article or a short sentence or ...
21
votes
5answers
603 views

C++: meaning of = delete after function declaration

class my_class { ... my_class(my_class const &) = delete; ... }; What does = delete mean in that context? Are there any other "modifiers" (other than = 0 and = delete)?
21
votes
1answer
935 views

What's the point of const void?

Apparently, it is possible to declare a function returning const void: const void foo() { } g++ seems to consider the const important, because the following code does not compile: #include ...
21
votes
8answers
1k views

Creating methods with infinite parameters?

In C# you can do this: foo = string.Format("{0} {1} {2} {3} ...", "aa", "bb", "cc" ...); This method Format() accepts infinite parameters, being the first one how the string should be formatted ...
21
votes
4answers
4k views

What is the difference between a language construct and a “built-in” function in PHP?

I know that include, isset, require, print, echo, and some others are not functions but language constructs. Some of these language constructs need parentheses, others don't. require 'file.php'; ...
21
votes
13answers
8k views

Elegant ways to return multiple values from a function

It seems like in most mainstream programming languages, returning multiple values from a function is an extremely awkward thing. The typical solutions are to make either a struct or a plain old data ...
21
votes
9answers
2k views

Good explanation of “Combinators” (For non mathematicians)

Anyone got a good explanation of "combinators" (Y-combinators etc. and NOT the company) I'm looking for one for the practical programmer who understands recursion and higher-order functions, but ...
20
votes
7answers
255 views

In R, what exactly is the problem with having variables with the same name as base R functions?

It seems to be generally considered poor programming practise to use variable names that have functions in base R with the same name. For example, it is tempting to write: data <- data.frame(...) ...
20
votes
2answers
593 views

Javascript syntax I haven't seen till now, what does it do really?

Today I saw a javascript syntax (when invoking a function) that is unfamiliar to me. It was like: def('Person') ({ init: function(name) {this.name=name;} ,speak: function(text) {alert(text || ...
20
votes
7answers
801 views

Is return an operator or a function?

This is too basic I think, but how do both of these work? return true; // 1 and return (true); // 2 Similar: sizeof, exit My guess: If return was a function, 1 would be erroneous. ...
20
votes
30answers
2k views

JavaScript Collection of one-line Useful Functions

This is a question to put as many interesting and useful JavaScript functions written in one line as we can. I made this question because I'm curious how many people around like the art of one-Line ...
19
votes
6answers
265 views

C++ pointer to functions, Beginner Question

I want to ask about pointer in C++ I have some simple code: int add(int a, int b){ return a+b; } int runner(int x,int y, int (*functocall)(int, int)){ return (*functocall)(x,y); } now, suppose ...
19
votes
2answers
8k views

PHP function to generate v4 UUID

So I've been doing some digging around and I've been trying to piece together a function that generates a valid v4 UUID in PHP. This is the closest I've been able to come. My knowledge in hex, ...
19
votes
6answers
2k views

Is there an easy way to pickle a python function (or otherwise serialize its code)?

I'm trying to transfer a transfer a function across a network connection (using asyncore). Is there an easy way to serialize a python function (one that, in this case at least, will have no side ...
19
votes
4answers
6k views

how to get function name inside a function in PHP?

Is it possible? function test() { echo "function name is test"; }
19
votes
5answers
22k views

Call a function with argument list in python

I'm trying to call a function inside another function in python, but can't find the right syntax. What I want to do is something like this: def wrapper(func, args): func(args) def func1(x): ...
19
votes
6answers
128k views

Array functions in jQuery

I am using jQuery in my web application. I want to use arrays, but I am not able to find out functions for arrays (add, remove or append elements in array) in jQuery. Is there any link related to ...
19
votes
4answers
12k views

Passing a dictionary to a function in python as keyword parameters

I'd like to call a function in python using a dictionary. Here is some code: d = dict(param='test') def f(param): print param f(d) This prints {'param': 'test'} but I'd like it to just print ...
19
votes
6answers
3k views

Why can I use a function before it's defined in Javascript?

This code always work, and across browsers. function fooCheck(){ alert(internalFoo()); return internalFoo(); function internalFoo(){ return true; } } fooCheck(); I could not find a single ...
19
votes
1answer
3k views

How can I generate a list of function dependencies in MATLAB?

In order to distribute a function I've written that depends on other functions I've written that have their own dependencies and so on without distributing every m-file I have ever written, I need to ...
18
votes
3answers
577 views

Isn't the template argument (the signature) of std::function part of its type?

Given the following code, what is the reason behind the ambiguity? Can I circumvent it or will I have to keep the (annoying) explicit casts? #include <functional> using namespace std; int ...

1 2 3 4 5 173