3
votes
3answers
69 views
What’s the name of the problem that relates to optimizing closures on a stack-based system?
I remember hearing about a general optimization problem that relates to function closures, stating that in general it's difficult to optimize the creation of a closure using only stack-based memory …
3
votes
2answers
101 views
PowerShell: an elegant way to create closures
Keith Hill explained me that blocks in PowerShell are not closures and that to create closures from blocks I have to call method .GetNewClosure().
Is there any elegant way to create closures from …
3
votes
1answer
73 views
Groovy : Closures or Methods
Hi,
I've got into the habbit of using Closures everywhere I can in place of regular methods, even when I don't need access to free variables. So, I will use this:
def addNumbers = { left, right …
2
votes
4answers
119 views
Closures in Ruby
hi
i'm having a little trouble with closures and i'd like to know what
the equivalent code for the canonical make-adder procedure would be in
ruby,
in scheme it would be like
(define (make-adder n)
…
4
votes
5answers
162 views
What exactly does “closure” refer to in JavaScript?
I understand what closures are, but I am having some trouble grokking exactly what the term closure refers to. I have seen the term used in many websites, but rarely do they agree on the actual …
8
votes
2answers
308 views
Closures in Java - syntax differences between the three major proposals?
Three major proposals for adding closures to the Java language has been presented:
BGGA (Bracha Gafter Gosling Ahé) also known as "full closures", by Gilad Bracha, Neal Gafter, James Gosling and …
0
votes
2answers
79 views
closures mean fully type-safe criteria?
combining closures (FCM) and generics, would it be possible to have fully type-safe criteria.
// The following works without a cast as Foo.id is a 'long' field.
List<Long> ids = …
0
votes
2answers
55 views
(javascript) why do i need to use a wrap function for event handlers?
I'm trying to understand why in the following code I need Dragger.prototype.wrap and why I can't just use the event handling methods directly:
function Dragger(id) {
this.isMouseDown = false;
…
0
votes
4answers
48 views
How to pass external variables to a private javascript outer closure function?
I may have made some poor design choices on this one. I have several objects being instanced like this.
core.modules.trial = function(sandbox){
return{
alert_private : function(){
…
1
vote
3answers
58 views
Is nested XMLHttpRequests with multiple closures a good idea?
I have a Greasemonkey script which operates on a search results page at a video site. The function of the script is to take a javascript link that opens a new window with a flash player, jump through …
4
votes
3answers
85 views
How|Where are closed-over variables stored?
This is a question based on the article "Closing over the loop variable considered harmful" by Eric Lippert.
It is a good read, Eric explains why after this piece of code all funcs will return the …
2
votes
4answers
69 views
Scope with a self-invoking function in Javascript
Take below code iterates over 6 input buttons and attaches an onclick event to every button that alerts the index number of the respective iteration:
for (var i = 1; i < 6; ++i) {
var but = …
2
votes
7answers
372 views
How do you explain closure to a 5 year old?
I am currently looking at lambda expression and the word closure keeps coming. Can someone explain it to me in real simple language.
1
vote
1answer
50 views
JavaScript variable binding and loop.
Consider such loop:
for(var it = 0; it < 2; it++)
{
setTimeout(function() {
alert(it);
}, 1);
}
The output is:
=> 2
=> 2
I would like it to be: 0, 1. I see two ways to …
0
votes
3answers
73 views
Closure problem? - passing current value of a variable
I'm trying to pass the current value of a variable when an a dynamically generated navigation 'node' is clicked. This needs to just be an integer, but it always results in the last node's value.. have …
