setMaxLoopIterations: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page setMaxLoopIterations to SetMaxLoopIterations without leaving a redirect: Converting page title to first-letter uppercase) |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
setMaxLoopIterations(numLoops) | setMaxLoopIterations(numLoops) | ||
</ | </syntaxhighlight> | ||
Where | Where | ||
* ''numLoops'' is the new maximum allowed iterations, this value cannot be lower than 10,000 | * ''numLoops'' is the new maximum allowed iterations, this value cannot be lower than 10,000 | ||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: setMaxLoopIterations()] | [r: setMaxLoopIterations()] | ||
</ | </syntaxhighlight> | ||
|also= | |also= |
Latest revision as of 23:59, 14 March 2023
setMaxLoopIterations() Function
• Introduced in version 1.4.0.2
Sets the max amount of loops (in [count():], [foreach():], [for():], [while():]) that are allowed. The current allowed min is 10,000. Note that this settings lasts only for the current session.
Usage
setMaxLoopIterations(numLoops)
Where
- numLoops is the new maximum allowed iterations, this value cannot be lower than 10,000
Example
[r: setMaxLoopIterations()]