oqueeh
.net
All topics
>
Python
Lambda functions in Python
pow2
=
lambda
x
:
x
*
x
Calling
x
=
pow2
(
3
)
# x will receive 9
Related names from other languages
functor
from C++
delegate
from C#
arrow function
from JavaScript
also
lambda expression
from Java and C#