Pointer to List structure
Source position: exec.pas line 192
type pList = ^tList; |
Exec system lists, which are used to link various things. Exec provides several routines to handle list processing, so you can use these routines to save yourself the trouble of writing a list package.
|
Insert a node at the head of a list |
|
|
Append node to tail of a list |
|
|
Remove the head node from a list |
|
|
Remove the tail node from a list |
|
|
Remove a node from a list |
|
|
Insert or append node to a system list |
|
|
Insert a node into a list |
|
|
Find a node in a system list by name |
|
|
Check if a list is empty |