A pipeline is a finite or infinite automata known as a stream) where:
A pipeline creates a composition relationship.
A pipeline is also known as:
Pipeline follows a compositional structure known as cascade of operations.
A dataflow (data workflow) is:
A pipeline is a combination of:
The pipeline is executed step by step
The pipeline is executed only when the terminal operation is called.
All steps are building a composite type known as algebraic data type.
In an OS Shell (Dos, bash), a serie of command connected by the pipe operators forms a pipeline. See Pipeline
By returning the calling object from a function, you can compose (or chain) functions. See Builder. When we compose (chain) an operation, the output of one operation becomes the input for the next operation, and operations are applied from left to right.