Tagged Questions
The anonymous-function tag has no wiki summary.
43
votes
3answers
3k views
Explain JavaScript's encapsulated anonymous function syntax
Summary
Can you explain the reasoning behind the syntax for encapsulated anonymous functions in JavaScript? Why does this work: (function(){})(); but this doesn't: function(){}();?
What I know
In ...
43
votes
10answers
28k views
How does an anonymous function in JavaScript work?
I'm reading some posts about closures and see this stuff all over the places, but there is no explanation how does it works - just every time I'm told to use it...:
// Create a new anonymous ...
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 ...
20
votes
10answers
879 views
Why use anonymous function? [closed]
Possible Duplicate:
How do you use anonymous functions in PHP?
Why should i use an anonymous function? I mean, what's the real deal using it?
I just don't really get this. I mean, you use ...
14
votes
7answers
2k views
javascript: recursive anonymous function?
Lets say I have a basic recursive function:
function recur(data) {
data = data+1;
var nothing = function() {
recur(data);
}
nothing();
}
How could I do this if I have an ...
14
votes
7answers
942 views
How do you explain this structure in JavaScript?
(function()
{
//codehere
}
)();
What is special about this kind of syntax?
What does ()(); imply?
13
votes
2answers
543 views
Anonymous recursive function in Scala
Is there a way to write an anonymous function that is recursive in Scala? I'm thinking of something like this:
((t: Tree) => {
print(t.value);
for (c <- t.children)
...
12
votes
3answers
745 views
Location of parenthesis for auto-executing anonymous JavaScript functions?
I was recently comparing the current version of json2.js with the version I had in my project and noticed a difference in how the function expression was created and self executed.
The code used to ...
11
votes
4answers
226 views
(…()) vs. (…)() in javascript closures
I know this is silly, but there's any difference between this:
(function() {
var foo = 'bar';
})();
and this?
(function() {
var foo = 'bar';
}());
JSLint tells us to Move the ...
11
votes
1answer
147 views
How to call a closure that is a class variable?
class MyClass {
var $lambda;
function __construct() {
$this->lambda = function() {echo 'hello world';};
// no errors here, so I assume that this is legal
}
}
$myInstance = new ...
11
votes
5answers
476 views
Are anonymous functions a bad practice in JavaScript?
I was reading that using anonymous functions in javascript is bad practice, because it can make debugging a pain, but I haven't seen this for myself. Are anonymous functions in JavaScript really bad ...
11
votes
3answers
628 views
Anonymous recursive PHP functions
Is it possible to have a PHP function that is both recursive and anonymous? This is my attempt to get it to work, but it doesn't pass in the function name.
$factorial = function( $n ) use ( ...
11
votes
4answers
4k views
How to execute multiple statements in a MATLAB anonymous function?
I'd like to do something like this:
>> foo = @() functionCall1() functionCall2()
So that when I said:
>> foo()
It would execute functionCall1() and then execute functionCall2(). (I ...
11
votes
15answers
2k views
Which languages support *recursive* function literals / anonymous functions?
It seems quite a few mainstream languages support function literals these days. They are also called anonymous functions, but I don't care if they have a name. The important thing is that a function ...
10
votes
3answers
82 views
Is it possible to reference an anonymous function from within itself in PHP?
I'm trying to do something like the following:
// assume $f is an arg to the wrapping function
$self = $this;
$func = function() use($f, $ctx, $self){
$self->remove($func, $ctx); // I want ...
10
votes
4answers
274 views
Javascript anonymous function immediate invocation/execution (expression vs. declaration) [closed]
Possible Duplicates:
What is the difference between a function expression vs declaration in Javascript?
Explain JavaScript's encapsulated anonymous function syntax
Why this:
...
10
votes
4answers
2k views
Is there a difference between (function() {…}()); and (function() {…})();? [closed]
Possible Duplicate:
Location of parenthesis for auto-executing anonymous JavaScript functions?
Sometimes I see:
(function() { ... }());
and sometimes I see:
(function() { ... })();
...
10
votes
8answers
651 views
anonymous functions considered harmful?
The more I delve into javascript, the more I think about the consequences of certain design decisions and encouraged practices. In this case, I am observing anonymous functions, a feature which is not ...
9
votes
5answers
561 views
How to call a method n times in Scala?
I have a case where I want to call a method n times, where n is an Int. Is there a good way to do this in a "functional" way in Scala?
case class Event(name: String, quantity: Int, value: ...
9
votes
1answer
133 views
Why is this anon subroutine declaration parsed as an indirect object method in Perl?
In the following anonymous subroutine declaration, Perl seems to be parsing it as an indirect method call, rather than as a subroutine:
use 5.010;
use strict;
use warnings;
sub proxy {
my $new = ...
9
votes
1answer
365 views
How to call anonymous function in C#?
I am interested if it's possible using C# to write a code analogous to this Javascript one:
var v = (function()
{
return "some value";
})()
The most I could achieve is:
Func<string> vf = ...
9
votes
2answers
3k views
php is_function() to determine if a variable is a function
I was pretty excited to read about anonymous functions in php, which let you declare a variable that is function easier than you could do with create_function. Now I am wondering if I have a function ...
9
votes
5answers
892 views
Is there += for window.onload in Javascript?
recently I came up with the following problem:
In my web site in all html pages I call a function in body onLoad event:
<body onLoad="func1();">
This is part of my template for html, so it ...
9
votes
8answers
4k views
Is it valid to define functions in JSON results?
Part of a website's JSON response had this (... added for context):
{..., now:function(){return(new Date).getTime()}, ...}
Is adding anonymous functions to JSON valid? I would expect each time you ...
8
votes
4answers
123 views
Using $this in PHP 5.3 anonymous function
The PHP manual states
It is not possible to use $this from anonymous function before PHP
5.4.0
on the anonymous functions page. But I have found I can make it work by assigning $this to a ...
8
votes
2answers
313 views
MATLAB: Performance problem with anonymous functions
Optimizing my MATLAB code, I stumbled upon a weird problem regarding anonymous functions.
Like in this thread I realized, that sometimes anonymous functions are running really slow.
But with minimal ...
8
votes
2answers
1k views
Ruby: Can lambda function parameters have default values?
I want to do something similar to this:
def creator()
return lambda { |arg1, arg2 = nil|
puts arg1
if(arg2 != nil)
puts arg2
...
8
votes
2answers
282 views
Are anonymous functions allowed?
Both Eclipse and NetBeans throw errors about the use of anonymous functions. The error in NetBeans says The language feature not compatible with PHP version indicated in project settings
The code ...
8
votes
1answer
402 views
Scala: How do I define an anonymous function with a variable argument list?
In Scala, how do I define an anonymous function which takes a variable number of arguments?
scala> def foo = (blah:Int*) => 3
<console>:1: error: ')' expected but identifier found.
...
8
votes
1answer
293 views
Javascript: Why use an anonymous function here?
I was browsing the JIT's code, and I saw this:
var isGraph = ($type(json) == 'array');
var ans = new Graph(this.graphOptions);
if(!isGraph)
//make tree
(function (ans, ...
8
votes
3answers
7k views
8
votes
2answers
286 views
What's the scope of a Javascript variable declared in a for() loop?
Check out the following snippet of HTML/Javascript code:
<html>
<head>
<script type="text/javascript">
var alerts = [];
for(var i = 0; i < 3; i++) {
alerts.push(function() { ...
7
votes
4answers
137 views
Dollar sign before self declaring anonymous function in JavaScript?
What is the difference between these two:
$(function () {
// do stuff
});
AND
(function () {
// do stuff
})();
7
votes
2answers
111 views
Please help me understand Javascript anonymous functions and jQuery .proxy()
I've been trying to wrap my head around how javascript functions and scope work, and it just doesn't make sense to me. Can someone please explain why the following code outputs: 'animal says meow' ...
7
votes
5answers
474 views
What is benefit of using (function(){…})() in JavaScript
I noticed in JQuery that the following code structure is used
(function(){var l=this,g,y=l.jQuery,p=l.$,...})()
Which seems to create a function, and call it.
What is the benefit of taking this ...
7
votes
3answers
2k views
Fake anonymous functions in C
In this SO thread, Brian Postow suggested a solution involving fake anonymous functions:
make a comp(L) function that returns the version of comp for arrays of length L... that way L becomes a ...
7
votes
3answers
3k views
Variables in Anonymous Functions — Can someone explain the following?
I've been trying to assign a function to onclick event of a dynamically created "a" tag in JavaScript. All of the tags are created in a loop as follows:
for ( var i = 0; i < 4; i++ )
{
var a = ...
7
votes
3answers
2k views
scala anonymous function syntax
I'm learning more about Scala and I'm having a little trouble understanding the example of anonymous functions here http://www.scala-lang.org/node/135. I've copied the entire code block below:
object ...
6
votes
2answers
76 views
improving performance of matlab code with anonymous-function bottlenecks
I'm running into serious performance issues with anonymous functions in matlab 2011a, where the overhead introduced by an anonymous container function is far greater than the time taken by the ...
6
votes
3answers
118 views
Scala method types and methods as parameters
In the following code example, I do not understand why the function fun can be passed as an argument to the method addAction. The method fun is of type Unit, while the method addAction expects a ...
6
votes
2answers
78 views
How to make anonymous functions with local parameters
How do I make this javascript alert 0, 1 and 2 instead of 3 3's?
var vals = [1, 2, 3];
for(var i = 0; i < vals.length; i++)
{
window.setTimeout(function() {alert(i);}, 1000);
}
I know the ...
6
votes
14answers
484 views
How to make an anonymous function in Python without Christening it?
Is it possible to put a function in a data structure, without first giving it a name with def?
# This is the behaviour I want. Prints "hi".
def myprint(msg):
print msg
f_list = [ myprint ]
...
6
votes
2answers
379 views
How do I write recursive anonymous functions?
In my continued effort to learn scala, I'm working through 'Scala by example' by Odersky and on the chapter on first class functions, the section on anonymous function avoids a situation of recursive ...
6
votes
4answers
313 views
What exactly are anonymous functions?
In my journey of a thousand lines of Ruby, I'm having a really hard time with the concept of anonymous functions. Wikipedia says something about there being some nameless soul in the code and it ...
6
votes
2answers
254 views
Matlab - for loop in anonymus function
I'm quite new to matlab, but I know how to do both for loops and anonymous functions. Now I would like to combine these.
I want to write:
sa = @(c) for i = 1:numel(biscs{c}), figure(i), ...
6
votes
1answer
404 views
Skipping outputs with anonymous function in MATLAB
Say I want to create an anonymous function from a m-file-function that returns two outputs. Is it possible to set up the anonymous function such that it only returns the second output from the ...
6
votes
3answers
666 views
Possible to have C++ anonymous functions with boost?
I'm trying to solve a problem that anonymous functions make much, much easier, and was wondering if this was possible in c++.
What I would like to do is (essentially)
template<typename T>
T ...
6
votes
1answer
1k views
Scala Generic Function Values (Anonymous Function) - Missing Parameter Type (Error)
im new with SCALA (Scala code runner version 2.7.7.final), and i really dont understand why scala requires for the caller the parameter type when we are using high order functions.
The sample below , ...
6
votes
4answers
2k views
How do you use anonymous functions in PHP?
Anonymous functions are available from PHP 5.3. Should I use them or avoid them? If so, how?
Thank you
Edited; just found some nice trick with php anonymous functions...
$container = new ...
6
votes
5answers
407 views
How can I approximate Python's or operator for set comparison in Scala?
After hearing the latest Stack Overflow podcast, Peter Norvig's compact Python spell-checker intrigued me, so I decided to implement it in Scala if I could express it well in the functional Scala ...