Uses of Class
adams.flow.source.AbstractForLoop
-
Packages that use AbstractForLoop Package Description adams.flow.source -
-
Uses of AbstractForLoop in adams.flow.source
Subclasses of AbstractForLoop in adams.flow.source Modifier and Type Class Description class
ForLoop
Emulates the following for-loop for integer IDs:
- positive step size:
for (int i = lower; i <= upper; i += step)
- negative step size:
for (int i = upper; i >= lower; i += step)
The integers can be output as a single array as well.class
StorageForLoop
Emulates the following for-loop:
- positive step size:
for (int i = lower; i <= upper; i += step)
- negative step size:
for (int i = upper; i >= lower; i += step)
In each iteration, the specified variable gets updated with the current value of the for-loop variable.
-