Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 902 Bytes

File metadata and controls

30 lines (19 loc) · 902 Bytes

Streams

What You Will Learn

In this section, you will learn:

  1. How to process data declaratively, rather than algorithmically, using Streams.

  2. How to filter, transform (map), and sort elements of a collection.

  3. How to reduce elements into a single value (such as the minimum or maximum value).

  4. How to group elements (based on some arbitrary property) to be processed together.

  5. How to chain operations together to perform complex reductions.

We will focus on the more common operations and will avoid some of the darker corners whenever possible.


Continue

Skip Back | Up | Skip Forward