Skip to main content

Documentation Index

Fetch the complete documentation index at: https://axiom.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Logical (binary) operators

The following logical operators are supported between two values of the bool type: These logical operators are sometimes referred-to as Boolean operators, and sometimes as binary operators. The names are all synonyms.
Operator nameSyntaxmeaning
Equality==Returns true if both operands are non-null and equal to each other. Otherwise, false.
Inequality!= or <>Returns true if either one (or both) of the operands are null, or they aren’t equal to each other. Otherwise, false.
Logical andandReturns true if both operands are true.
Logical ororReturns true if one of the operands is true, regardless of the other operand.