[Overview][Types][Classes][Index] Reference for unit 'StringHashList' (#lazutils)

TStringHashItem

Record type used to represent a hash item for a String value.

Declaration

Source position: stringhashlist.pas line 33

type TStringHashItem = record

  HashValue: Cardinal;

  

Cardinal hash value for the characters in Key.

  Key: string;

  

String with the content used to generate the HashValue.

  Data: Pointer;

  

Untyped Pointer to arbitrary data associated with the Key and HashValue.

end;

Description

TStringHashItem is a record type which represents a hash item for a String value. It has members for the Cardinal hash value, the String for the hash value, and a pointer to Data associated with the hash item.

TStringHashItem pointers are the type added to the TStringHashList container.

See also

PStringHashItem

  

Pointer to a TStringHashItem instance.

TStringHashList

  

Implements a container used to store hashed item values, keys, and data.


Version 4.0 Generated 2025-05-03 Home