Func5<T1, T2, T3, T4, T5, R> typedef

Func5<T1, T2, T3, T4, T5, R> = R Function(T1, T2, T3, T4, T5)

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

Implementation

typedef Func5<T1, T2, T3, T4, T5, R> = R Function(T1, T2, T3, T4, T5);