CF3<A, B, C, T> typedef

CF3<A, B, C, T> = T Function(C c) Function(B b) Function(A a)

Typedef for a curried function that takes 3 arguments.

Implementation

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