number != number number < number number <= number number == number number > number number >= number
!= t if the first number is not equal to the second, else nil.
< t if the first number is less than the second, else nil.
<= t if the first number is less than or equal to the second, else nil.
== t if the first number Is equal to the second, else nil.
> t if the first number is greater than the second, else nil.
>= t if the first number is greater than or equal to the second, else nil.
These functions perform a numeric comparison of their arguments. In mathematical (infix) notation, the function would put the first argument on the left side of the comparison, and the second argument on the right side of the comparison.
Copyright © 1995-2010 by Cogent Real-Time Systems, Inc. All rights reserved.