- pipe<A, B>(value, fn1): B
Parameters
- value: A
- fn1: ((value: A) => B)
Returns B
- pipe<A, B, C>(value, fn1, fn2): C
Parameters
- value: A
- fn1: ((value: A) => B)
- fn2: ((value: B) => C)
Returns C
- pipe<A, B, C, D>(value, fn1, fn2, fn3): D
Parameters
- value: A
- fn1: ((value: A) => B)
- fn2: ((value: B) => C)
- fn3: ((value: C) => D)
Returns D
- pipe<A, B, C, D, E>(value, fn1, fn2, fn3, fn4): E
Parameters
- value: A
- fn1: ((value: A) => B)
- fn2: ((value: B) => C)
- fn3: ((value: C) => D)
- fn4: ((value: D) => E)
Returns E
- pipe<A, B, C, D, E, F>(value, fn1, fn2, fn3, fn4, fn5): F
Parameters
- value: A
- fn1: ((value: A) => B)
- fn2: ((value: B) => C)
- fn3: ((value: C) => D)
- fn4: ((value: D) => E)
- fn5: ((value: E) => F)
Returns F
- pipe<A, B, C, D, E, F, G>(value, fn1, fn2, fn3, fn4, fn5, fn6): G
Parameters
- value: A
- fn1: ((value: A) => B)
- fn2: ((value: B) => C)
- fn3: ((value: C) => D)
- fn4: ((value: D) => E)
- fn5: ((value: E) => F)
- fn6: ((value: F) => G)
Returns G
- pipe<A, B, C, D, E, F, G, H>(value, fn1, fn2, fn3, fn4, fn5, fn6, fn7): H
Parameters
- value: A
- fn1: ((value: A) => B)
- fn2: ((value: B) => C)
- fn3: ((value: C) => D)
- fn4: ((value: D) => E)
- fn5: ((value: E) => F)
- fn6: ((value: F) => G)
- fn7: ((value: G) => H)
Returns H
Pipe
value
through several functions with each having the result of the last one being passed to the next as its input.