Logic AND

Click to copy

Performs a logical AND operation.


Example: Logic AND(first: True, second: False) = False.

FirstSecondResult
TrueTrueTrue
TrueFalseFalse
FalseTrueFalse
FalseFalseFalse

Flow Connections

  • [Input] In - starts the block's execution.
  • [Output] Out - activates when the block has finished its execution.

Data Connections

  • [Input] First (boolean) - 1st value to be evaluated.
  • [Input] Second (boolean) - 2nd value to be evaluated.
  • [Output] Result (boolean) - result of the operation.