+ 1
can anybody explain me lambda easily?
4 Respuestas
+ 2
ooh yeah java also use term lambda but not only limited to single expression it can also be anonymous function. i guess my original answer is only half correct
+ 7
It's also known as anonymous functions that are often passed in as parameters to other functions. In such cases, the other function will call the lambda to execute some additional logic. There are so many patterns, use cases, and applications for this across different languages and programming paradigms.
+ 2
its one liner function with one expression
or maybe a callable expression
+ 1
Thank you David Carroll and Rei you both really helped