|
|
|
|
|
by jamiltron
4843 days ago
|
|
Lambda expressions are not necessarily first-class functions (I mean, they are in Python, but so is any other old function). First class functions simply mean that a language treats functions as it would nearly any other data type, namely that they may be passed as parameters, bound to variables, and returned from other functions. Python's poor handling of lambda expressions do not invalidate that functions are first-class citizens. |
|