Search in: Word
Vietnamese keyboard: Off
Virtual keyboard: Show
Computing (FOLDOC) dictionary (also found in English - Vietnamese, English - English (Wordnet), French - Vietnamese)
fusion
Jump to user comments
programming A program transformation where a composition
of two functions is replaced by in-lining them and combining
their bodies. E.g.
f x = g (h x) ==@# f x = g (2 * x)
g x = x + 1 f x = 2 * x + 1
h x = 2 * x