Comparison
[eq: lhs; rhs]
→ bool
Returns true
if lhs
and rhs
are equal.
[ge: lhs; rhs]
→ bool
Returns true
if lhs
is greater than or equal to rhs
.
[gt: lhs; rhs]
→ bool
Returns true
if lhs
is greater than rhs
.
[le: lhs; rhs]
→ bool
Returns true
if lhs
is less than or equal to rhs
.
[lt: lhs; rhs]
→ bool
Returns true
if lhs
is less than rhs
.
[neq: lhs; rhs]
→ bool
Returns true
if lhs
and rhs
are not equal.