If I have a recursive function where the inner fun...
# coroutines
r
If I have a recursive function where the inner function is called inside a
scope.launch
, presumably that prevents stack overflows on its own, no
tailrec
required?
c
However,
tailrec
is much more performant if it's available in your case.