unrolled-list
Unrolled lists

Next:<unrolled-list> ( -- list )


Vocabulary
unrolled-lists

Class description
The class of unrolled lists.

All nodes in an unrolled list contain an array of 32 items. Nodes point to the previous node and next node, or f if they do not exist.
frontThe front node of the list or f.
front-posThe position of the front element of the list in front.
backThe back node of the list or f.
back-posThe position of the back element of the list in back.



It is not recommended to modify any of these slots manually. Using the deque protocol provides safer operations.

Definition


Methods