bounce method

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

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

Implementation

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