Func2<T1, T2, R> typedef

Func2<T1, T2, R> = R Function(T1, T2)

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

Implementation

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