Lambda Expressions
Lambda Expression is an anonymous function. i.e: a function that does not have any name.
Writing Lambda Expression:
Syntax:
( Arguments list ) -> { Body of Lambda Expression }
Argument list : There can be zero or more arguments.
Arrow-token : ...
refstash.com8 min read