pipe5<A, B, C, D, E> function
- A a,
- B ab(
- A
- C bc(
- B
- D cd(
- C
- E de(
- D
Transforms the input a
by applying the function ab
, then bc
, then cd
and then de
.
Implementation
E pipe5<A, B, C, D, E>(A a, B Function(A) ab, C Function(B) bc,
D Function(C) cd, E Function(D) de) {
return de(cd(bc(ab(a))));
}