CF9<A, B, C, D, E, F, G, H, I, T> typedef

CF9<A, B, C, D, E, F, G, H, I, T> = T Function(I i) Function(H h) Function(G g) 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 9 arguments.

Implementation

typedef CF9<A, B, C, D, E, F, G, H, I, T>
    = T Function(I i) Function(H h) Function(G g) Function(F f) Function(E e)
                    Function(D d)
                Function(C c)
            Function(B b)
        Function(A a);