Prevent use of constant value of expression for function specializations
coder.ignoreConst(
prevents
the code generator from using the constant value of expression
)expression
to
create function
specializations. coder.ignoreConst(expression)
returns the value of expression
.
For some recursive function calls, you can use coder.ignoreConst
to
force run-time recursion. See Force Code Generator to Use Run-Time Recursion.
coder.ignoreConst(expression)
prevents
the code generator from using the constant value of expression
to
create function specializations. It does not prevent other uses of
the constant value during code generation.