The comparison operators for int64 objects.
system
int64/= x y => result
int64< x y => result
int64<= x y => result
int64= x y => result
int64> x y => result
int64>= x y => result
x⇩ |
An int64 object or an integer of type (signed-byte 64) . |
y⇩ |
An int64 object or an integer of type (signed-byte 64) . |
result |
A boolean. |
The function int64/=
is the not equal comparison for int64 objects.
The function int64<
is the less than comparison for int64 objects.
The function int64<=
is the less than or equal comparison for int64 objects.
The function int64=
is the equal comparison for int64 objects.
The function int64>
is the greater than comparison for int64 objects.
The function int64>=
is the greater than or equal comparison for int64 objects.
x and y can be int64 objects or integers of type (signed-byte 64)
.
See the section 28.2.3 Fast 64-bit arithmetic for more information about the INT64 API.
LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:31:02