Performance/Functions: Difference between revisions
m (+infobox) |
m (Performance:Functions moved to Performance/Functions) |
||
(No difference)
|
Revision as of 20:22, 20 January 2006
Haskell Performance Resource
Constructs: Techniques: |
Force functions to be inlined
Haskell has an INLINE pragma that can be used to indicate to the compiler that you would like a function's definition to be inlined at each call site. (not all compilers respect the INLINE pragma; GHC does, any others?)
- GHC's documentation on the INLINE pragma