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