2
votes
4answers
89 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
137 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 …
5
votes
2answers
94 views
+100
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
77 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
45 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;
…
4
votes
3answers
79 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 …
1
vote
3answers
48 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 …
0
votes
4answers
42 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(){
…
2
votes
7answers
364 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.
2
votes
4answers
61 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 = …
6
votes
4answers
207 views
Problem with delegates in C#
In the following program, DummyMethod always print 5. But if we use the commented code instead, we get different values (i.e. 1, 2, 3, 4). Can anybody please explain why this is happenning?
…
1
vote
1answer
44 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 …
8
votes
3answers
239 views
Are these examples C# closures?
I still don't quite understand what a closure is so I posted these two examples and I want to know whether these examples are both closures or not?
Example A:
List<DirectoryInfo> subFolders = …
1
vote
1answer
111 views
calling F# functions from C# and getting null reference exceptions
I'm using Visual Studio 2008 with the October 2009 F# CTP installed.
I'm trying to call some F# code from my C# program. Most types of F# functions seem to work, but some are not getting initialized …
0
votes
1answer
35 views
how to get an anonymous function to keep the scoping it had originally when called in an event handler
I have a setup where I get some information, in an ajax call, then I immediately use some of that information for another call, and then I populate some fields.
The problem is that I am not certain …
