Dictionary    Maps    Thesaurus    Translate    Advanced >   


Tip: Click Thesaurus above for synonyms. Also, follow synonym links within the dictionary to find definitions from other sources.

1. The Free On-line Dictionary of Computing (30 December 2018)
lambda lifting

   A program transformation to remove free variables.  An
   expression containing a free variable is replaced by a
   function applied to that variable.  E.g.

   	f x = g 3  where g y = y + x

   x is a free variable of g so it is added as an extra argument:

   	f x = g 3 x  where g y x = y + x

   Functions like this with no free variables are known as
   supercombinators and are traditionally given upper-case names
   beginning with "$".  This transformation tends to produce many
   supercombinators of the form f x = g x which can be eliminated
   by eta reduction and substitution.  Changing the order of
   the parameters may also allow more optimisations.  References
   to global (top-level) constants and functions are not
   transformed to function parameters though they are technically
   free variables.

   A closely related technique is closure conversion.  See also
   Full laziness.


Common Misspellings >
Most Popular Searches: Define Misanthrope, Define Pulchritudinous, Define Happy, Define Veracity, Define Cornucopia, Define Almuerzo, Define Atresic, Define URL, Definitions Of Words, Definition Of Get Up, Definition Of Quid Pro Quo, Definition Of Irreconcilable Differences, Definition Of Word, Synonyms of Repetitive, Synonym Dictionary, Synonym Antonyms. See our main index and map index for more details.

©2011-2024 ZebraWords.com - Define Yourself - The Search for Meanings and Meaning Means I Mean. All content subject to terms and conditions as set out here. Contact Us, peruse our Privacy Policy