Func3<T1, T2, T3, TOut> typedef

Func3<T1, T2, T3, TOut> = TOut Function(T1, T2, T3)

A function that takes three arguments and returns TOut.

Implementation

typedef Func3<T1, T2, T3, TOut> = TOut Function(T1, T2, T3);