Iterator callback type.
Source position: contnrs.pp line 454
type TStringIteratorCallback = procedure( |
Item: AnsiString; |
const Key: AnsiString; |
var Continue: Boolean |
); |
Item |
|
String associated with key. |
Key |
|
Key value. |
Continue |
|
Should iterate continue or stop ? |
TStringIteratorCallBack is the callback prototype for the TFPStringHashTable method. It is called for each element in the hash table, with the string. If Continue is set to False, the iteration stops.
|
Iterate over the strings in the hash table. |