CF6<A, B, C, D, E, F, T> typedef

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

Typedef for a curried function that takes 6 arguments.

Implementation

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