lambdas

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

Like Java 7 ? Then You Are Going to Love Java 8 !!

Reading Time: 5 minutes JAVA 8 (aka jdk 1.8) is a major release of JAVA programming language development. With the Java 8 release, Java provided support for functional programming, new JavaScript engine, new APIs for date time manipulation, new streaming API, etc. which will be discussed in detail. In this blog, we will focus on What’s New in Java 8 and it’s usage in a simple and intuitive way.We Continue Reading