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

NextPrevUpTopContentsIndex

int64/=

int64<

int64<=

int64=

int64>

int64>=

Functions
Summary

The comparison operators for int64 objects.

Package

system

Signatures

int64/= x y => result

int64< x y => result

int64<= x y => result

int64= x y => result

int64> x y => result

int64>= x y => result

Arguments

x

An int64 object or an integer of type (signed-byte 64).

y

An int64 object or an integer of type (signed-byte 64).

Values

result

A boolean.

Description

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.

See the section Fast 64-bit arithmetic for more information about the INT64 API.

See also

int64


LispWorks User Guide and Reference Manual - 20 Sep 2017

NextPrevUpTopContentsIndex