Home > @lndsld/fp > pipe
Signature:
declare function pipe<A, B, C, D, E>(a: A, ab: (a: A) => B, bc: (b: B) => C, cd: (c: C) => D, de: (c: D) => E): E;
Parameter | Type | Description |
---|---|---|
a | A | |
ab | (a: A) => B | |
bc | (b: B) => C | |
cd | (c: C) => D | |
de | (c: D) => E |
Returns:
E