Loop Structures
Loop structures allow you to execute one or more lines of code repetitively. You can repeat the commands until a condition is true, until a condition is false, a specified number of times, or once for each object in a collection. The loop structures supported by Encore RPG include:
- Do begins a group of operations and indicates the number of times the group will be processed. An ENDDO statement marks the end of the group.
- DOWHILE executes a block of commands while a
comparison expression evaluates true. An
ENDDO
statement marks the end of the group. - DOUNTIL executes a block of commands until a
comparison expression evaluates true. An
ENDDO
statement marks the end of the group. - FOR executes a block of commands a specified number
of times, until the index value is greater than or less than the limit value,
depending on the keyword values. After the number of iterations has been
completed, control is transferred to the next statement following the
**FOR** /[ENDFOR](/dox/ENDFOR.html)
block. - FOREACH executes a block of commands for each
element in an array or collection. After the iteration has been
completed for all the elements in the collection, control is transferred to the
next statement following the
**FOREACH** /[ENDFOR](/dox/ENDFOR.html)
block.
Related Section
Explains control-flow commands used for branching.
Explains control-flow commands inside other control-flow commands.