Flow Processing
Learn about functions used in flow processing.
We'll cover the following...
We’ve presented Flow
as a pipe through which values flow. As they do so, we can change them in different ways: drop, multiply, transform, or combine. These operations between flow creation and the terminal operation are called flow processing. In this chapter, we’ll learn about functions used for this.
Note: The functions presented here might remind us of the functions we use for Collection processing. This is no coincidence as they represent the same concepts, with the ...