INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- Create an empty list.
-- Create a list with `n' void elements.
-- Current item
-- Item at first position
-- Item at last position
-- Current cursor position
-- May new items be added?
-- May items be removed?
-- Is the list full?
-- Is `p' a valid cursor?
-- Move cursor `i' positions.
-- Move cursor to first position.
-- Move cursor to last position.
-- Move cursor to next position, if any.
-- Move cursor to previous position, if any.
-- Move cursor to `i'-th position.
-- Move cursor to element remembered in `p'.
-- Replace current item by `v'.
-- (Synonym for `replace')
-- Replace current item by `v'.
-- Add `v' to end.
-- Move index to the current item.
-- Remove current item.
-- Move cursor to right neighbor
-- (or `after' if no right neighbor)
-- Exchange item at `i'-th position with item
-- at cursor position.
-- Copy of sub-list beginning at cursor position
-- and having min (`n', `count' - `index' + 1) items
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |