TBucketItemArray and TBucketItem represent the items in a TBucket record (Delphi) or structure (C++).
TBucketItem = record Data: Pointer; Item: Pointer; end;
struct TBucketItem { void * Data; void * Item; };
Contnrs
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.
TBucketArray
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|