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

make-simple-int64-vector Function

Summary

The constructor for simple-int64-vector objects.

Package

system

Signature

make-simple-int64-vector length &key initial-contents initial-element => vector

Arguments
length
A non-negative fixnum.
initial-contents
A sequence of integers of type (signed-byte 64), or nil.
initial-element
An integer of type (signed-byte 64).
Values
vector
Description

The function make-simple-int64-vector is the constructor for simple-int64-vector objects.

The argument initial-contents, if supplied, should be a sequence of length length. It specifies the contents of vector.

The argument initial-element, if supplied, specifies the contents of vector.

An error is signaled if both initial-contents and initial-element are supplied.

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

See also

int64
simple-int64-vector


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