-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterface_core_for-loop_v1.go
More file actions
25 lines (19 loc) · 1.04 KB
/
interface_core_for-loop_v1.go
File metadata and controls
25 lines (19 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by actrun. DO NOT EDIT.
package node_interfaces
import "github.com/actionforge/actrun-cli/core" // Iteratively executes contained nodes.
// ==> (o) Inputs
// Executes the loop.
const Core_for_loop_v1_Input_exec core.InputId = "exec"
// Breaks the loop.
const Core_for_loop_v1_Input_exec_break core.InputId = "exec-break"
// Starting point of the loop.
const Core_for_loop_v1_Input_first_index core.InputId = "first_index"
// Ending point of the loop. Note, this value is inclusive. If the first index is 0 and the last index is 0, the node will iterate **once**. If you need to iterate zero times, the last index must be smaller than the first index.
const Core_for_loop_v1_Input_last_index core.InputId = "last_index"
// Outputs (o) ==>
// Executes on each iteration.
const Core_for_loop_v1_Output_exec_body core.OutputId = "exec-body"
// Executes upon completion of the loop.
const Core_for_loop_v1_Output_exec_completed core.OutputId = "exec-completed"
// Current iteration index.
const Core_for_loop_v1_Output_index core.OutputId = "index"