NextPrevUpTopContentsIndex

make-simple-int32-vector

Function
Summary

The constructor for simple-int32-vector objects.

Package

system

Signature

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

Arguments

length

A non-negative fixnum.

initial-contents

A sequence of integers of type (signed-byte 32) , or nil .

initial-element

An integer of type (signed-byte 32) .

Values

vector

A simple-int32-vector.

Description

The function make-simple-int32-vector is the constructor for simple-int32-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 signalled if both initial-contents and initial-element are supplied.

See the section "Fast 32-bit arithmetic" in the LispWorks User Guide for more information about the INT32 API.

See also

int32
simple-int32-vector


LispWorks Reference Manual - 12 Mar 2008

NextPrevUpTopContentsIndex