0
votes
2answers
60 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> i …
0
votes
2answers
44 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.isM …
0
votes
4answers
35 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 : funct …
4
votes
3answers
77 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 …
1
vote
3answers
46 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 …
2
votes
4answers
58 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 …
1
vote
7answers
354 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.
6
votes
4answers
204 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 ha …
1
vote
1answer
40 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. …
0
votes
3answers
69 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 …
8
votes
3answers
234 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<DirectoryIn …
0
votes
1answer
34 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 tha …
1
vote
1answer
101 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 …
2
votes
3answers
168 views
Is a Python closure a good replacement for `__all__`?
Is it a good idea to use a closure instead of __all__ to limit the names exposed by a Python module? This would prevent programmers from accidentally using the wrong name for a mod …
3
votes
2answers
108 views
Java mechanisms at use in lambdaj closures
Lamdbaj allows the definition of closures in the Java language, various examples can be found
here
My question is regarding the underlying Java mechanisms at use, for instance, t …
