Skip to main content
Corvus Connection

Repeat

Iteration
flow.repeatRuns the body a fixed number of times.A bounded loop: do the body N times.

Inputs

Name
Kind
Type
Flags
inExecexecmultiplexed
countDataSystem.Int32None

Outputs

Name
Kind
Type
Flags
bodyExecexecNone
completedExecexecNone

Lowers to C#

for (int i = 0; i < count; i++) { … }