Operators

^^^

Supported By

Syntax

expression ^^^ expression

Both expressions yield booleans.

Description

The ^^^ operator evaluates to the logical exclusive OR of the given boolean values. Exactly one of the given values must be true for the expression to evaluate to true. If both values are true or both values are false, the expression will evaluate to false.

Compatibility

The ^^^ operator is no longer available in OpenXION 1.4 and later.

Synonym

xor

See Also

and, &&&, or, |||