Operators

xor

Supported By

Syntax

expression xor expression

Both expressions yield booleans.

Description

The xor 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 xor operator is no longer available in OpenXION 1.4 and later.

Synonym

^^^

See Also

and, &&&, or, |||