Functional Programming In Java
If you have ever used Streams and Optionals in Java, you must have come across lambda expressions and functional interfaces. But how exactly are lambda expressions tied to functional interfaces? This article will talk about functional programming in Java and how Streams and Optionals make use of functional interfaces. What is a functional interface? An interface that has only one abstract method (unimplemented method) can qualify to be a functional interface....