Computing (FOLDOC) dictionary
Jump to user comments
programming (Or "unfold") To replace a
function call with
If done recklessly (e.g. attempting to inline a
recursivefunction) the
compiler will fail to terminate. If done
over-enthusiastically the code size may increase
exponentially, e.g. if function f calls g twice, and g calls h
twice and h is inlined in g which is inlined in f (in either
order) then there will be four copies of h's body in f.
(1994-11-03)