HELP
A menu item.

USE
Use Conditional to access the following
conditional branches:
* If A == B
* If A != B
* If A < B
* If A > B
* If A <= B
* If A >= B

Use Conditional objects to decide which
subthread to run.

LOCATION
Flow ==> Conditional ==>

NOTES
Conditional objects are preconfigured
If/Then/Else objects.  You cannot modify the
condition or change the number of, type, or
shape of data inputs or outputs.

Note the difference between menu items
under Relational and under Conditional.
Relationals are formulas with output 0 or 1;
Conditionals are If/Then/Else and have two
outputs of which one fires.

Note that the return value of AND, OR,
XOR, and NOT is of type Int32 and is the same
shape as the operands.  This is different
than the conditionals such as == that always
return a scalar.

The logical operators are defined for type
text only in the sense of whether the string
is null or not.  That is, "0" and "1" are
logically true since they are non-null
strings, while "" is false.  Therefore, "zoo"
AND "" (null string) is logically false since
the second string is null.  Remember that
when comparing a Text type to a non-string
type, the latter is promoted to a Text type.
This means that "zoo" AND "0" is true since
the Real 0 is promoted to the string "0" and,
since both strings are non-null, the AND
expression is true, returning 1.

SEE ALSO
If A == B, If A != B, If A < B, If A > B, If
A <= B, If A >= B, and If/Then/Else.

Relational under Formula.
