Kotlin : Lambdas and Higher-Order Functions
Reading Time: 3 minutes High order function (Higher level function) is a function which accepts function as a parameter, returns a function and it can do both. We can pass a function instead of passing Int, String, or other data types as a parameter in a function. Lambdas Expressions Lambdas Expressions are essentially anonymous functions that we can treat as values , for example -pass lambda expressions as arguments to Continue Reading