Vocabularyunrolled-listsClass descriptionThe 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.
| front | The front node of the list or f. |
| front-pos | The position of the front element of the list in front. |
| back | The back node of the list or f. |
| back-pos | The 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.
DefinitionMethods