Function inlining

From HaskellWiki
Revision as of 15:59, 18 January 2008 by Lemming (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function inlining means that the compiler does not insert a function call into the machine code but inserts the whole function definition instead. That is inlining treats functions like macros.