Anonymous Functions

Also known as a (function literal, lambda abstraction, or lambda expression). It's a function definition that is not bound to an identifier. Anonymous functions are often arguments being passed to higher-order functions, or used for constructing the result of a higher-order function that needs to return a function.

Examples Filter
No examples yet.
Be the first to post an example!