Skip to content

Control Flow Overview

Welcome to Flojoy’s Control Flow Blocks page. Here you can find all the information to handle control flows in Flojoy.

CONDITIONALS

CONDITIONALCompare two given Scalar inputs.

LOGICAL_OPERATORS

ANDTakes two boolean data type and computs logical AND operation on them.
EXCLUSIVE_ORTakes two boolean data type and computs logical EXCLUSIVE OR operation on them.
IMPLIESTakes two boolean data type and computs logical IMPLIES operation on them.
NOTTakes a boolean data type and computs logical NOT operation on them.
NOT_ANDTakes two boolean data type and computs logical NOT AND operation on them.
NOT_ORTakes two boolean data type and computs logical NOT OR operation on them.
ORTakes two boolean data type and computs logical OR operation on them.

LOOPS

APPENDAppend a single data point to an array.
LOOPIterate through the LOOP body blocks a given number of times (or -1 times for infinite looping).

LOOP_TOOLS

BREAKEnd the iteration of a loop.
LOOP_INDEXLoad the loop index from the LOOP node.

TIMERS

TIMERSleep (pause program execution) for a specified number of seconds.