I understand what are lambda functions in Python, but I can't find what is the meaning of "lambda binding" by searching the Python docs. A link to read about it would be great. A trivial explained example would be even better. Thank you.
|
First, a general definition: Lambda Binding of Arguments in Programs and Functions (update: link no longer functional, but this is a good definition)
Now, there is an excellent python example in a discussion here: "...there is only one binding for
returns two functions that both return 7; if there was a new binding after the |
||||
|
|
|
I've never heard that term, but one explanation could be the "default parameter" hack used to assign a value directly to a lambda's parameter. Using Swati's example:
|
||||
|
|
|
Where have you seen the phrase used? "Binding" in Python generally refers to the process by which a variable name ends up pointing to a specific object, whether by assignment or parameter passing or some other means, e.g.:
So I would guess that "lambda binding" refers to the process of binding a lambda function to a variable name, or maybe binding its named parameters to specific objects? There's a pretty good explanation of binding in the Language Reference, at http://docs.python.org/ref/naming.html |
|||
|
|