|
|
|
|
|
by danprager
6301 days ago
|
|
Yes, in that case the inner function has access to the arguments of the outer function. But you can go deeper -- e.g. declaring an inner function inside code inside the out er function -- which also knows about the local variables in the outer function. Or if you're only doing it once use a lambda (with the same advantages). |
|