Java Streams

Java had introduced streams in Java 8 to help us fasten the development by providing ways to perform operations on data streams (collections) without writing bulky code. In short, stream can be thought of stream or pipeline of data, on which you need to perform some operations. There can be two types of operations, intermediate … Continue reading Java Streams