throwFunction2<T0, T1> function

Map2<T0, T1, Never> throwFunction2<T0, T1>(
  1. Object throwable
)

Throwing function with 2 arguments.

Implementation

Map2<T0, T1, Never> throwFunction2<T0, T1>(Object throwable) =>
    (arg0, arg1) => throw throwable;