Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
9answers
5k views

Scope of python lambda functions and their parameters

I need a callback function that is almost exactly the same for a series of gui events. The function will behave slightly differently depending on which event has called it. Seems like a simple case to ...
6
votes
3answers
160 views

javascript currying

I'm trying to create curry function that can be applied to any function and return another, with 1 of the arguments applied. Properties that I want to have: If function has only one argument curry ...
3
votes
1answer
186 views

Lexical closures over macrolet?

Is there a way to do something like lexical closures using macrolet? What I want to do is make the following macro a local recursive helper that calls a function on each combination instead of ...
2
votes
3answers
137 views

Is this scoping possible in javascript?

I am working on a javascript framework. I have several independent scripts that look like this: core.modules.example_module = function(sandbox){ console.log('wot from constructor ==', wot); ...
0
votes
2answers
41 views

Variable in wrong scope (maybe needs a closure?)

I have the following code that is in need of a closure: var numItems = document.getElementsByClassName('l').length; for (var i = 0; i < numItems; i++) { ...