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