fp/pipe library

Extensions

Pipe on Func1<A, B>

Functions

pipe2<S, T, U>(Func1<S, T> f1, Func1<T, U> f2) Func1<S, U>
pipe2Func<T, U, V>(Func0<T> f1, Func1<T, U> f2, Func1<U, V> f3) → V
pipe3Func<T, U, V, W>(Func0<T> f1, Func1<T, U> f2, Func1<U, V> f3, Func1<V, W> f4) → W
pipeFunc<T, U>(Func0<T> f1, Func1<T, U> f2) → U

Typedefs

Func0<A> = A Function()
Func1<A, B> = B Function(A a)