Hacker News new | ask | show | jobs
by pmarreck 3669 days ago
Tail-call optimization eliminates those. Assuming your language provides it, and assuming you trigger it correctly. ;)

http://stackoverflow.com/questions/32164370/does-elixir-infi...

1 comments

TCO eliminates some types of recursion. Not all of them.
Eliminates some types of stack usage, not "recursion".