← Back to context Comment by The_rationalist 5 years ago Kotlin also has compile time guaranteed tailcall with the tailrec function qualifier. 1 comment The_rationalist Reply ackfoobar 5 years ago tailrec only handles "tail" recursion, i.e. tail calls to itself. This is far weaker than general tail "call" optimization required by the technique in the article.
ackfoobar 5 years ago tailrec only handles "tail" recursion, i.e. tail calls to itself. This is far weaker than general tail "call" optimization required by the technique in the article.
tailrec only handles "tail" recursion, i.e. tail calls to itself. This is far weaker than general tail "call" optimization required by the technique in the article.