CF5<A, B, C, D, E, T> typedef

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

Typedef for a curried function that takes 5 arguments.

Implementation

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