9
votes
7answers
445 views
How do you explain this structure in JavaScript?
(function()
{
//codehere
}
)();
What is special about this kind of syntax?
What does ()(); imply?
8
votes
2answers
193 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(){}(); …
7
votes
12answers
520 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 …
5
votes
4answers
220 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 f …
5
votes
3answers
185 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 …
5
votes
4answers
844 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 fu …
4
votes
2answers
87 views
MATLAB functions refusing to function depending on placement
I've written a very simple GUI in MATLAB that will convert temperatures. It is meant to serve as a tutorial for a class of students. A strange thing has happened though. As with …
4
votes
2answers
3k 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 lo …
3
votes
4answers
125 views
what is wrong with my javascript? [closed]
Possible Duplicates:
Doesn’t JavaScript support closures with local variables?
Variables in Anonymous Functions — Can someone explain the following?
JavaScript …
3
votes
8answers
256 views
Anonymous methods/functions: a fundamental feature or a violation of OO principles?
Is the recent movement towards anonymous methods/functions by mainstream languages like C++ and C# something important, or a weird feature that violates OO principles?
Are recent …
2
votes
3answers
111 views
Slow performance using anonymous functions in MATLAB… have others noticed this?
In order to refactor my MATLAB code, I thought I'd pass around functions as arguments (what MATLAB calls anonymous functions), inspired by functional programming.
However, it seem …
2
votes
3answers
296 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 …
2
votes
2answers
122 views
Scala: How to “store” a function in a var?
I'm learning Scala and I'm trying to store a function in a var to evaluate it later:
var action:() => Any = () => {}
def setAction(act: => Any) {
action = act
}
bu …
2
votes
4answers
158 views
Best way to run a simple function on a new Thread?
I have two functions that I want to run on different threads (because they're database stuff, and they're not needed immediately).
The functions are:
getTenantReciept …
2
votes
1answer
162 views
How to get the “this” (scope) of a Javascript anonymous function?
Let's say I get an anonymous function an need to act on its context, but it's different whether it's binded to "window" or an unknown object.
How do I get a reference to the objec …
