throwFunction5<T1, T2, T3, T4, T5> function

Map5<T1, T2, T3, T4, T5, Never> throwFunction5<T1, T2, T3, T4, T5>(
  1. Object throwable
)

Throwing function with 5 positional arguments.

Implementation

Map5<T1, T2, T3, T4, T5, Never> throwFunction5<T1, T2, T3, T4, T5>(
        Object throwable) =>
    (arg1, arg2, arg3, arg4, arg5) => throw throwable;