Equivalence Operators

Equivalence operators used in the Logic Template are operators that compare two operands.

Six types of equivalence operators are supported:

Operator

Description

"=" or "=="

The binary operator EQUAL TO returns 1 if operands are equal.

"!=" or "<>"

The binary operator NOT EQUAL TO returns 1 if operands are not equal.

"<"

The binary operator LESS THAN returns 1 if the first operand is less than the second operand.

">"

The binary operator GREATER THAN returns 1 if the first operand is greater than the second operand.

"!<" or ">="

The binary operator NOT LESS THAN returns 1 if the first operand is not less than the second operand.

"!>" or "<="

The binary operator NOT GREATER THAN returns 1 if the first operand is not greater than the second operand.