Language:
Free Online Dictionary|3Dict

last call optimisation

Source : Free On-Line Dictionary of Computing

last call optimisation
     
        Normally when procedure A calls procedures B, C, .., Z, the
        environment of procedure A is only discarded when procedure Z
        returns and procedure A itself terminates.  Using last call
        optimisation, A's environment is discarded as Z is called.
        This allows arbitrarily deep nesting of procedure calls
        without consuming memory to store useless environments.
     
        A special case of this is tail recursion optimisation where
        the last procedure called is the calling procedure itself.
Sort by alphabet : A B C D E F G H I J K L M N O P Q R S T U V W X Y Z