Func3<T1, T2, T3, R> typedef

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

Represents a function with three arguments: (T1, T2, T3) -> R.

Implementation

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