Alternative tail-call optimisation decorator
keleshev opened this issue · 2 comments
keleshev commented
There is an interesting implementation of tail-call optimisation decorator, which could be provided as an alternative to fn.recur.tco
:
http://code.activestate.com/recipes/474088-tail-call-optimization-decorator/
It allows for more readable code, but has a speed penalty because it is implemented by raising exception on each recursion.
aitjcize commented
+1 for this. BTW, is this project dead?