[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Callback for the ForEach call.
Source position: contnrs.pp line 499
type TBucketProc = procedure( |
AInfo: Pointer; |
AItem: Pointer; |
AData: Pointer; |
out AContinue: Boolean |
); |
AInfo |
|
Extra info pointer passed to Foreach call. |
AItem |
|
Item |
AData |
|
Data associated with item |
AContinue |
|
Set to false to stop iteration over items. |
TBucketProc is the prototype for the #TCustomBucketList.Foreach call. It is the plain procedural form. The Continue parameter can be set to False to indicate that the Foreach call should stop the iteration.
For a procedure of object (a method) callback, see the TBucketProcObject prototype.
#TCustomBucketList.Foreach |
||
|
Callback for the ForEach call. |
lazarus-ccr.sourceforge.net |