Function inlining

From HaskellWiki
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.