diff options
author | Anthony Ramine <[email protected]> | 2012-11-03 18:55:07 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-16 15:04:37 +0100 |
commit | 98ee8e929c7e4015fab483a7eb112a94e777ea3b (patch) | |
tree | ec5db471b1074887aad39409d6b6bd183ee59d4f | |
parent | aa9834f86a1f2e96e5fcb058108d710d9f443ff3 (diff) | |
download | otp-98ee8e929c7e4015fab483a7eb112a94e777ea3b.tar.gz otp-98ee8e929c7e4015fab483a7eb112a94e777ea3b.tar.bz2 otp-98ee8e929c7e4015fab483a7eb112a94e777ea3b.zip |
Document compiler option 'inline_list_funcs'
-rw-r--r-- | lib/compiler/doc/src/compile.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/compiler/doc/src/compile.xml b/lib/compiler/doc/src/compile.xml index 27d750f929..ddaae2655d 100644 --- a/lib/compiler/doc/src/compile.xml +++ b/lib/compiler/doc/src/compile.xml @@ -816,6 +816,32 @@ pi() -> 3.1416. </section> <section> + <title>Inlining of list functions</title> + <p>The compiler can also inline a variety of list manipulation functions + from the stdlib's lists module.</p> + + <p>This feature must be explicitly enabled with a compiler option or a + <c>-compile()</c> attribute in the source module.</p> + + <p>To enable inlining of list functions, use the <c>inline_list_funcs</c> + option.</p> + + <p>The following functions are inlined:</p> + <list type="bulleted"> + <item><seealso marker="stdlib:lists#all/2">lists:all/2</seealso></item> + <item><seealso marker="stdlib:lists#any/2">lists:any/2</seealso></item> + <item><seealso marker="stdlib:lists#foreach/2">lists:foreach/2</seealso></item> + <item><seealso marker="stdlib:lists#map/2">lists:map/2</seealso></item> + <item><seealso marker="stdlib:lists#flatmap/2">lists:flatmap/2</seealso></item> + <item><seealso marker="stdlib:lists#filter/2">lists:filter/2</seealso></item> + <item><seealso marker="stdlib:lists#foldl/3">lists:foldl/3</seealso></item> + <item><seealso marker="stdlib:lists#foldr/3">lists:foldr/3</seealso></item> + <item><seealso marker="stdlib:lists#mapfoldl/3">lists:mapfoldl/3</seealso></item> + <item><seealso marker="stdlib:lists#mapfoldr/3">lists:mapfoldr/3</seealso></item> + </list> + </section> + + <section> <title>Parse Transformations</title> <p>Parse transformations are used when a programmer wants to use |