VSVishnu S Rinvishnusr.hashnode.dev·Feb 11, 2022 · 2 min readJava Stream Operations Simplified - Part 3In this post, we will look at some of the remaining terminal stream operations. Please refer to previous post on terminal stream operations. IntermediateTerminal filter()count() map()forEach() flatMap()collect() sorted()max() distinct()min...00
VSVishnu S Rinvishnusr.hashnode.dev·Feb 5, 2022 · 2 min readJava Stream Operations Simplified - Part 2In this post, we will look at some of the terminal stream operations. A terminal operation is applied to the end of intermediate operations. They help to return a result from a stream. IntermediateTerminal filter()count() map()forEach() flat...00
VSVishnu S Rinvishnusr.hashnode.dev·Jan 22, 2022 · 5 min readJava Stream Operations Simplified - Part 1Introduction The Stream API was introduced in Java 8 which is used to process a collection of data. Stream is simply a sequence of objects. There are numerous operations which can be done on java streams. And they are divided into two types Intermed...01A