Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in tail-call-optimization

My scala code does not get TCO'ed though it passes @tailrec

I get a StackOverFlowException on this code because my JVM doesn't support tail call optimizaion, right? [duplicate]

Why does TCO require support from the VM?

Is a recursive function in Scheme always tail-call optimized?

Are programs in functional languages more likely to have stack overflows?

Is this a tail call? (Javascript)

Why does gcc perform tail call optimization for one version but not for the other?

Tail recursion with Groovy

How to find out if Prolog performs Tail Call Optimization

What is the difference between loop/recur and recur by itself?

How do I detect functions that I can apply tail call optimisation to?

Elixir tail-call recursive function

Why is the tail call optimization not used in this Haskell program?

Tail call conversion in OCaml

Rebol Tail Call Optimization

Compiling Tail-Call Optimization In Mutual Recursion Across C and Haskell

What's some simple F# code that generates the .tail IL instruction?

Why does this code prevent gcc & llvm from tail-call optimization?

Why does return/redo evaluate result functions in the calling context, but block results are not evaluated?

Is my rewritten foldl function optimised?