Name

adams.flow.source.StorageForLoop


Synopsis

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. The output of the for-loop is the specified storage value (in each iteration).


Additional information

Flow input/output:
- output: adams.flow.core.Unknown


Options