Tagged “Java 8 streams”

Java 8 - Aggregate operations on Streams

01 Feb, 2017

You can perform intermediate and terminal operations on Streams. Intermediate operations result in a new stream and are lazily evaluated and will start when terminal operation is called.

Tags:

Java 8 - Streams in action

01 Feb, 2017

Java 8 introduced new package java.util.stream which contains classes to perform SQL-like operations on elements. Stream is a sequence of elements on which you can perform aggregate operations (reduction, filtering, mapping, average, min, max etc.).

Tags:

See all tags.