This node performs standard logical gates operations like And, Or, Xor
.
True
in order to return True
. e.g.
True and False = False
, False and False = False
, True and True = True
.True
or both are True
then the output is
True
. e.g. True or True = True
, True or False = True
, False or False = False
.True
. e.g.
True xor True = False
, True xor false = True
, False xor False = False
.True
if one of them is False
.True
if both of them is False
.