Example
|
Description
|
a == b
|
Comparison of equality of two operands
|
a & b
a && b
|
Logical AND of two operands
|
a | b
a || b
|
Logical OR of two operands
|
a ~= b
a != b
|
Comparison of inequality of two operands
|
a > b
|
Comparison of the first operand greater than the second operand
|
a < b
|
Comparison of the first operand less than the second operand
|
a >= b
|
Comparison of the first operand greater than or equal to the second operand
|
a <= b
|
Comparison of the first operand less than or equal to the second operand
|
Example
|
Description
|
a == b
|
Comparison of equality of two operands
|
a && b
|
Logical AND of two operands
|
a & b
|
Bitwise AND of two operands
|
a || b
|
Logical OR of two operands
|
a | b
|
Bitwise OR of two operands
|
a ~= b
a != b
a <> b
|
Comparison of inequality of two operands
|
a > b
|
Comparison of the first operand greater than the second operand
|
a < b
|
Comparison of the first operand less than the second operand
|
a >= b
|
Comparison of the first operand greater than or equal to the second operand
|
a <= b
|
Comparison of the first operand less than or equal to the second operand
|
a ^ b
|
Bitwise XOR of two operands
|