Lambda Expressions
A lambda expression is an anonymous function that can be used to write
shorter and more concise code, especially when passing fuctions as arguments.
- No need to write full fuction defenitions
- Often used with fuctional interfaces
- Makes code shorter and readable
Example in Java
(x,y) -> x + y
Diagram
Learn more about Lambda Expressions