[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Iterate over the objects in the hash table
Source position: contnrs.pp line 481
public function TFPObjectHashTable.Iterate( |
aMethod: TObjectIteratorMethod |
):TObject; virtual; |
aMethod |
|
Method to call for each object in the hash table. |
Nil or the object that caused the iteration to be aborted.
Iterate iterates over all elements in the array, calling aMethod for each object, or until the method returns False in its continue parameter. It returns Nil if all elements were processed, or the object that was being processed when aMethod returned False in the Continue parameter.
ForeachCall |