Function inlining

From HaskellWiki
(Redirected from Inlining)

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.