throwFunction4<T0, T1, T2, T3> function

Map4<T0, T1, T2, T3, Never> throwFunction4<T0, T1, T2, T3>(
  1. Object throwable
)

Throwing function with 4 arguments.

Implementation

Map4<T0, T1, T2, T3, Never> throwFunction4<T0, T1, T2, T3>(Object throwable) =>
    (arg0, arg1, arg2, arg3) => throw throwable;