System.Contnrs.TCustomBucketList.ForEach

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ForEach(AProc: TBucketProc; AInfo: Pointer = nil): Boolean; overload;
function ForEach(AEvent: TBucketEvent): Boolean; overload;

C++

bool __fastcall ForEach(TBucketProc AProc, void * AInfo = (void *)(0x0))/* overload */;
bool __fastcall ForEach(TBucketEvent AEvent)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs TCustomBucketList

Description

Executes a callback for every item in the bucket list.

Call ForEach to execute the procedure specified by AProc for each item in the bucket list. ForEach iterates through all the items in the bucket list, passing in each item and its associated data to the specified callback.

AProc is the callback to execute.

AInfo has no predefined meaning. It is passed to the AInfo parameter of the callback.

ForEach returns true if it executes the callback for every item in the bucket list. It returns false if the callback set AContinue to false for some item, causing any subsequent items to be skipped.