I think there is @tailrec annotation to ensure the compiler will optimize a tail recursive function. Do you just put it in front of the declaration? Does it also work if Scala is used in scripting mode (for instance using :load <file> under REPL)?
|
|
|||
|
|
|
From the "Tail calls, @tailrec and trampolines" blog post:
Example:
And it works from the REPL (example from the Scala REPL tips and tricks):
|
|||
|
|
|
The annotation is
It is placed just before the Here we import the annotation, and try to mark a method as
Oops! The last invocation is
Note that |
|||||
|
|
The Scala compiler will automatically optimize any truly tail-recursive method. If you annotate a method that you believe is tail-recursive with the Note that Scala does not consider a method to be tail-recursive if it can be overridden. Thus the method must either be private, final, on an object (as opposed to a class or trait), or inside another method to be optimized. |
||||
|
|