merari42@lemmy.world to Programmer Humor@programming.devEnglish · 11 months agoSome of my iterations are delightfully recursivelemmy.worldimagemessage-square53fedilinkarrow-up1517
arrow-up1517imageSome of my iterations are delightfully recursivelemmy.worldmerari42@lemmy.world to Programmer Humor@programming.devEnglish · 11 months agomessage-square53fedilink
minus-squareaubeynarflinkfedilinkarrow-up2·11 months agoNot just calls to self - any time a function’s last operation is to call another function and return its result (a tail call), tail call elimination can convert it to a goto/jump.
Not just calls to self - any time a function’s last operation is to call another function and return its result (a tail call), tail call elimination can convert it to a goto/jump.