While Loop End(whileLoopEnd)
The While Loop End node marks the end of a while-loop block in the Easy-Use logic toolkit.
while Loop End
Description
The While Loop End node marks the end of a while-loop block in the Easy-Use logic toolkit. It is a control-flow boundary rather than a data-processing node: it does not compute an image, latent, or value. Place this node after the nodes that should be repeated inside the loop body, and pair it with the corresponding While Loop Start node. It belongs to the EasyUse/Logic/While Loop category.
Inputs
This node exposes no input ports or widget parameters. It does not take data from upstream nodes; its position in the workflow graph defines where the repeated portion of the loop ends.
Outputs
This node produces no output ports. It returns no data to downstream nodes and cannot be chained into a normal data link.
Usage Notes
- Use While Loop End as the final node of the loop body. When the workflow reaches it, the current iteration ends and control returns to the paired While Loop Start node.
- Because it has no inputs or outputs, it is not a data source or data sink. It exists solely to demarcate the end of the loop.
- Keep the loop body between While Loop Start and While Loop End; moving the end node changes which nodes are repeated.
- If no input or output ports are visible on the node, this is expected behavior for the current version.
Comments
Sign in with GitHub to join the discussion.