Name

adams.flow.source.ForLoop


Synopsis

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.


Additional information

Flow input/output:
- output: java.lang.Integer


Options