callWithTypeArguments method

R callWithTypeArguments(
  1. RuntimeType<T0> t0,
  2. RuntimeType<T1> t1,
  3. RuntimeType<T2> t2,
  4. RuntimeType<T3> t3,
  5. U0 u0,
)

Call this function using t0...tn as its type parameters.

Implementation

R callWithTypeArguments(
        RuntimeType<T0> t0, RuntimeType<T1> t1, RuntimeType<T2> t2, RuntimeType<T3> t3, U0 u0) =>
    withTypeArguments(t0, t1, t2, t3)(u0);