Flow Control Section
Understand and utilize flow control nodes in Blup to manage the flow and execution of your application's logic.
Last updated
Understand and utilize flow control nodes in Blup to manage the flow and execution of your application's logic.
Last updated
This section consists of nodes that help you to control the flow of execution of the program.
This node is one of the most widely used node, this node can be used to divert the flow of execution according to whether the criteria specified by you is satisfied or not.
This node helps to perform some logic repeatedly.
Note: The starting value is always smaller than the final value.
This node is very similar to the for loop, it helps you to execute some logic repeatedly. The major difference between the for loop and while is that in while loop we don’t know how many times the loop will run but we can specify a terminating condition[a condition which halts the execution of the loop].
If you have any ideas to make Blup better you can share them through our Discord community channel
Run
This input node point acts as a starting point for the node.
Condition
This input node point help to define the condition based on which you want to change the flow of the program Note you can also used the input box below the node point to directly input the condition instead of giving it through the program.
True
This output node point help you to execute certain logic if the condition provides is true.
False
This output node point helps you to execute certain logic if the condition provided is false.
Run
This input node point acts as a starting point for the node.
First
This input node point helps you to provide the starting value \[starting value is an initial value given to loop]. You can also use the input box provided to give the first value for the node.
Last
This input node point helps you to provide the starting value [starting value is an initial value given to loop]. Similar to the first node point, you can also use to input box provided to give the first value for the node.
Use Step in Loop iterator
If you check this checkbox, then a new step node point is generated which helps to add the step size.
Exit
This output node point helps you to define the logic you want to execute after the loop execution is finished.
Body
All the logic that you want to execute repeatedly comes under this node point.
Run
This input node point acts as a starting point for the node.
Condition
This input node point helps you to provide the condition which helps you to start the execution of the loop.
Exit
This output node point helps you to define and logic that you want to execute after the loop execution is finished.
Body
All the logic that you want to execute repeatedly comes under this node point.