Difference between revisions of "Function inlining"

From HaskellWiki
Jump to navigation Jump to search
 
(No difference)

Latest revision as of 15:59, 18 January 2008

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.