REDUCE

20.2 Word Vectors

Word-vectors or w-vectors are vector-like structures, in which each element is a ”word” sized, untagged entity. This can be thought of as a special case of fixnum vector, in which the tags have been removed.

(make-words UPLIM:integer INITVAL:integer):
word-vector expr
Defines and allocates space for a Word-Vector with
(add1 UPLIM) elements, each initialized to INITVAL.

(make-bytes UPLIM:integer INITVAL:integer):
byte-vector expr
Defines and allocates space for a byte-vector with
(add1 UPLIM) elements, each initialized to INITVAL.