FunctionDeclaration[name,typedfun]
declares name to be a typed function suitable for use in a compiler environment.


FunctionDeclaration
FunctionDeclaration[name,typedfun]
declares name to be a typed function suitable for use in a compiler environment.
Details


- FunctionDeclaration is a symbolic representation of a declaration and does not evaluate on its own.
- The typed function in FunctionDeclaration can be of the form Typed[{t1,t2,…}tout]@Function[{x1,x2,…},body].
- A typed function in FunctionDeclaration of the form Typed[{t1,t2,…}tout]@DownValuesFunction[sym] will use function definitions attached to sym.
- A typed function in FunctionDeclaration of the form Typed[{t1,t2,…}tout]@KernelFunction[feval] will call the Wolfram Engine for the computation.
- FunctionDeclaration can be used inside of CompilerEnvironmentAppendTo and the first argument of functions like FunctionCompile.
- The name used in FunctionDeclaration can be used in more than one declaration so long as they have different types.
- The function declared in FunctionDeclaration can be used in other function declarations.
- The function declared in FunctionDeclaration can be defined for more than one type by using ForAllType.
- The type used in FunctionDeclaration can be built from new types declared by TypeDeclaration.
- A function exported from an external library can be declared by LibraryFunctionDeclaration.
- The following option is supported:
-
"Inline" Automatic whether calls to this function should be inlined or left as function calls - Possible settings for "Inline" include:
-
Automatic only inline if this function is very small "Hint" try to inline this function unless it is very large "Never" never inline this function "Always" always inline this function
Examples
open all close allBasic Examples (8)
FunctionDeclaration can be used in FunctionCompile:
The compilation uses the function declaration:
FunctionDeclaration can be used to add a definition to the default compiler environment:
Use the declaration in a compilation:
The compilation uses the function declaration:
Reset the compiler environment to clear the declaration:
FunctionDeclaration can be used to add a definition to a new compiler environment:
Use the CompilerEnvironment option to specify the environment:
A function name can be used in more than one declaration:
Reset the compiler environment to clear the declaration:
A function declaration can call another declaration:
Compilation uses both declarations:
A function declaration can work for more than one type:
The declaration works for an integer argument:
The same declaration works for a string:
A function declaration can use definitions created with := to set up DownValues:
Give the function a name and a type and state that the implementation comes from the DownValues:
Now these definitions are converted into efficient compiled code:
What is neat is that this workflow is compatible with the uncompiled version:
The optimized compiled code is much faster:
A function declaration can be made to call the Wolfram Engine for a computation:
Call FactorInteger but give the function a different name in compiled code:
Now a function that uses this declaration is compiled:
The computation is done in the Wolfram Engine, so the compiled code may not have an advantage:
Scope (1)
TypeOf and TypeEvaluate can be used to set up the types in a declaration:
Options (1)
"Inline" (1)
A function declaration with the default setting is not inlined:
A setting of "Hint" means that the function is likely to be merged with its caller:
A very small function is merged with its caller:
A setting of "Never" means that the function is not merged with its caller:
A setting of "Always" means that the function is always merged with its caller:
This is useful since it means that stack allocations can be passed back:
Tech Notes
Related Guides
History
Text
Wolfram Research (2021), FunctionDeclaration, Wolfram Language function, https://reference.wolfram.com/language/ref/FunctionDeclaration.html.
CMS
Wolfram Language. 2021. "FunctionDeclaration." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/FunctionDeclaration.html.
APA
Wolfram Language. (2021). FunctionDeclaration. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/FunctionDeclaration.html
BibTeX
@misc{reference.wolfram_2025_functiondeclaration, author="Wolfram Research", title="{FunctionDeclaration}", year="2021", howpublished="\url{https://reference.wolfram.com/language/ref/FunctionDeclaration.html}", note=[Accessed: 13-August-2025]}
BibLaTeX
@online{reference.wolfram_2025_functiondeclaration, organization={Wolfram Research}, title={FunctionDeclaration}, year={2021}, url={https://reference.wolfram.com/language/ref/FunctionDeclaration.html}, note=[Accessed: 13-August-2025]}