Y
Hacker News
new
|
ask
|
show
|
jobs
by
Vetch
539 days ago
I've also used it to make a function tail recursive, which is useful in languages with TCO.
1 comments
codebje
539 days ago
If your continuation has no state to hold your recursion should already be tail called.
If it does have state, it’s probably a stack allocated closure…
link
If it does have state, it’s probably a stack allocated closure…