Record used to maintain an item in the hash list.
Source position: contnrs.pp line 194
| type THashItem = record | ||
| HashValue: LongWord; | 
 | Key hash value. | 
| StrIndex: Integer; | 
 | Index of the string value. | 
| NextIndex: Integer; | 
 | Next value index. | 
| Data: Pointer; | 
 | Data associated with the key. | 
| end; | 
THashItem is used internally in the hash list. It should never be used directly.
| 
 | Hash list class for pointer data. |