c<C> method

C Function(A a) c<C>(
  1. C f(
    1. 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));