c<C> method
C Function(A a)
c<C>(
- C f(
- B b
compose two functions together
add.c(print);
// is the same as
() => print(add());
Implementation
C Function(A a) c<C>(C Function(B b) f) => (a) => f(this(a));