[Overview][Constants][Types][Classes][Index] |
Record type with pointers to the current, previous, and next has items in a linked list.
Source position: dynhasharray.pp line 59
type TDynHashArrayItem = record |
||
Item: Pointer; |
|
Pointer to an element to be stored in the array. |
Next: PDynHashArrayItem; |
|
It points to the next element in the doubly linked list. |
Prior: PDynHashArrayItem; |
|
It points to the previous element in the doubly linked list. |
IsOverflow: Boolean; |
|
False if it is the first element of the linked list. |
end; |
Version 4.0 | Generated 2025-05-03 | Home |