Function Curry in Java8

Function Curry in Java8
One of the important features of a functional program is Function Currying.As we know java8 introduce lambda which brings some functional nature in java programming. We are blessed that by an intelligent use of Lambda we can create Function currying...

stream api in java 8

stream api in java 8
JAVA8 Stream API The most powerful feature in Java8 is introducing Java.Util.Stream package. By Steam API, We can do filter,map,reduce like operations on a collection . It is very useful as many times we need to filter a collection based on some...