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
   CONDITIONAL  Compare two given Scalar inputs.     
 LOGICAL_OPERATORS
   AND  Takes two boolean data type and computs logical AND operation on them.     
    EXCLUSIVE_OR  Takes two boolean data type and computs logical EXCLUSIVE OR operation on them.     
    IMPLIES  Takes two boolean data type and computs logical IMPLIES operation on them.     
    NOT  Takes a boolean data type and computs logical NOT operation on them.     
    NOT_AND  Takes two boolean data type and computs logical NOT AND operation on them.     
    NOT_OR  Takes two boolean data type and computs logical NOT OR operation on them.     
    OR  Takes two boolean data type and computs logical OR operation on them.     
 LOOPS
   APPEND  Append a single data point to an array.     
    LOOP  Iterate through the LOOP body blocks a given number of times (or -1 times for infinite looping).     
 LOOP_TOOLS
   BREAK  End the iteration of a loop.     
    LOOP_INDEX  Load the loop index from the LOOP node.     
 TIMERS
   TIMER  Sleep (pause program execution) for a specified number of seconds.