All Manuals > LispWorks® User Guide and Reference Manual > 47 The SYSTEM Package

int32/=

int32<

int32<=

int32=

int32>

int32>= Functions

Summary

The comparison operators for int32 objects.

Package

system

Signatures

int32/= x y => result

int32< x y => result

int32<= x y => result

int32= x y => result

int32> x y => result

int32>= x y => result

Arguments
An int32 object or an integer of type (signed-byte 32).
An int32 object or an integer of type (signed-byte 32).
Values
result
A boolean.
Description

The function int32/= is the not equal comparison for int32 objects.

The function int32< is the less than comparison for int32 objects.

The function int32<= is the less than or equal comparison for int32 objects.

The function int32= is the equal comparison for int32 objects.

The function int32> is the greater than comparison for int32 objects.

The function int32>= is the greater than or equal comparison for int32 objects.

x and y can be int32 objects or integers of type (signed-byte 32).

See the section 28.2.2 Fast 32-bit arithmetic for more information about the INT32 API.

See also

int32


LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:31:02