Skip to main content
Corvus Connection

For

Iteration
flow.forCounts from a start to an end (exclusive), exposing the current index to the body.A counted loop with access to the loop index.

Inputs

Name
Kind
Type
Flags
inExecexecmultiplexed
fromDataSystem.Int32None
toDataSystem.Int32None

Outputs

Name
Kind
Type
Flags
bodyExecexecNone
indexDataSystem.Int32multiplexed
completedExecexecNone

Parameters

Name
Type
Required
Default
Choices
stepSystem.Int32no1None

Lowers to C#

for (int i = from; i < to; i += step) { … }