RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Contnrs.TBucketItem Record

TBucketItemArray and TBucketItem represent the items in a TBucket record (Delphi) or structure (C++).

Pascal
TBucketItem = record
  Data: Pointer;
  Item: Pointer;
end;
C++
struct TBucketItem {
  void * Data;
  void * Item;
};

TBucketItemArray is a dynamic array of TBucketItem values. Each TBucketItem stores an item and its associated data pointer. 

Item points to the item in a bucket. 

Data points to the data that is associated with Item. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!