Tagged Questions
The lexical-scoping tag has no wiki summary.
5
votes
6answers
998 views
Closures in Python
I've been trying to learn Python, and while I'm enthusiastic about using closures in Python, I've been having trouble getting some code to work properly:
def memoize(fn):
def get(key):
...
3
votes
2answers
282 views
Why does jQuery has a “window=this” at the very begining and say it would speed up references to window?
When I open jQuery's source code I find this line.
var
// Will speed up references to window, and allows munging its name.
window = this
Why and how this line will speed up?
2
votes
1answer
279 views
Lexical scoping in C# lambda/anonymous delegates
I want to check whether a simple mathematical expression would overflow (using checked and catch(OverflowException)), but without the need to use a try-catch block every time. So the expression (not ...
1
vote
4answers
77 views
In Ruby, how does one add to an object a method with access to variables in outer scope?
I'm new to Ruby. I'm at the stage where I'm unsuccessfully attempting to write things in Ruby as I would in some other language.
I'm trying to add a method to an object – a humble array, let's say. ...
0
votes
1answer
18 views
a question about lexical scoping
I try to understand lexical-scoping. In lexical-scoping, I have this code, C like syntax:
main{
f1(){
int y = 8;
}
int y = 1; //*
f1();
}
After the execution of f1() line, ...