bounce method

T bounce(
  1. A a,
  2. B b,
  3. C c
)

Runs the function, "bouncing" on the recursion trampoline, returning the result of the wrapped computations.

Implementation

T bounce(A a, B b, C c) => this(a, b, c).bounce();