Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Head/Tail Access
| Returns the head element of the list (cannot be empty). | |
| Returns the tail element of the list (cannot be empty). | 
Operations
| Adds an element (or all the elements in another list) to the head of the list (makes a new head). | |
| Adds an element (or all the elements in another list) to the tail of the list (makes a new tail). | |
| Removes the element from the head of the list. | |
| Removes the element from the tail of the list. | 
Iteration
| Gets the next element for iterating. | |
| Gets the previous element for iterating. | 
Retrieval/Modification
| Gets the element at a given position. | |
| Sets the element at a given position. |