You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lua specifies tail calls as part of the language, which can be taken advantage of in the code presented.
However, having function A calling function, B right at the end, like the following is not enough.
functionB() dosomething() endfunctionA()
B()
end
This is because lua doesn't know how many items function B will return and has to clean the lua stack up in case function B returns anything, because A is not supposed to return anything itself. This means that the last thing function A does is clean up the lua stack after B returns, not calling function B itself. Because of this, the tail call optimization cannot be applied.
However in the following similar snippet:
functionB() dosomething() endfunctionA()
returnB()
end
Here, since function A returns exactly the same thing as function B, the last thing function A does really is calling function B (because after B returns, the lua stack will contain exactly what A needs to immediately return). So in this case, the call to B will be tail-call optimized and no extra stack space is used.
An example of where this optimization can be used (because we don't really care what the relevant functions return) is in the step function within the pong function, for example:
Lua specifies tail calls as part of the language, which can be taken advantage of in the code presented.
However, having function A calling function, B right at the end, like the following is not enough.
This is because lua doesn't know how many items function B will return and has to clean the lua stack up in case function B returns anything, because A is not supposed to return anything itself. This means that the last thing function A does is clean up the lua stack after B returns, not calling function B itself. Because of this, the tail call optimization cannot be applied.
However in the following similar snippet:
Here, since function A returns exactly the same thing as function B, the last thing function A does really is calling function B (because after B returns, the lua stack will contain exactly what A needs to immediately return). So in this case, the call to B will be tail-call optimized and no extra stack space is used.
An example of where this optimization can be used (because we don't really care what the relevant functions return) is in the step function within the pong function, for example:
and in the callback inside the
join
function:The text was updated successfully, but these errors were encountered: