CF4<A, B, C, D, T> typedef

CF4<A, B, C, D, T> = T Function(D d) Function(C c) Function(B b) Function(A a)

Typedef for a curried function that takes 4 arguments.

Implementation

typedef CF4<A, B, C, D, T> = T Function(D d) Function(C c) Function(B b)
    Function(A a);