Creates a function that accepts a value and passes it through a series of transformations.
Unlike pipe, this returns a function that will accept the initial value later.
Template: A
Input type
Template: B,C,D...
Intermediate and final types in the transformation chain
Returns
A function that takes an input and returns the result of applying all transformations
Creates a function that accepts a value and passes it through a series of transformations. Unlike
pipe, this returns a function that will accept the initial value later.