Welcome! Please see the About page for a little more info on how this works.

0 votes
in Docs by

The doc-string for trampoline starts "trampoline can be used to convert algorithms requiring mutual
recursion without stack consumption. ". This is inaccurate: trampoline applies only to mutual tail recursion.

Replace this with "trampoline can be used to convert algorithms employing mutual tail recursion into a form that does not consume stack".

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1434 (reported by alex+import)
...