Comparison

eq


[%eq: lhs; rhs]

bool

Returns @true if lhs and rhs are equal.

Parameters

lhsany
The left-hand operand of the comparison.

rhsany
The right-hand operand of the comparison.

ge


[%ge: lhs; rhs]

bool

Returns @true if lhs is greater than or equal to rhs.

Parameters

lhsany
The left-hand operand of the comparison.

rhsany
The right-hand operand of the comparison.

gt


[%gt: lhs; rhs]

bool

Returns @true if lhs is greater than rhs.

Parameters

lhsany
The left-hand operand of the comparison.

rhsany
The right-hand operand of the comparison.

le


[%le: lhs; rhs]

bool

Returns @true if lhs is less than or equal to rhs.

Parameters

lhsany
The left-hand operand of the comparison.

rhsany
The right-hand operand of the comparison.

lt


[%lt: lhs; rhs]

bool

Returns @true if lhs is less than rhs.

Parameters

lhsany
The left-hand operand of the comparison.

rhsany
The right-hand operand of the comparison.

neq


[%neq: lhs; rhs]

bool

Returns @true if lhs and rhs are not equal.

Parameters

lhsany
The left-hand operand of the comparison.

rhsany
The right-hand operand of the comparison.