December 13, 2018

Learn how to implement java.util.function.BiFunction in java.

I am using java 11, you will need to modify the codes a bit to work in java below version 11. BiFunction is a Functional Interface , It has two methods in it, andThen  and apply. The method andThen  has a default implementation and apply  method is an abstract. andThen :- This method is used to chain multiple BiFunction together. It helps to execute […]

Read more