TBucketArray and TBucket represent a list of buckets that each store an array of items.
TBucket = record Count: Integer; Items: TBucketItemArray; end;
struct TBucket { int Count; TBucketItemArray Items; };
Contnrs
TBucketArray is a dynamic array of TBucket vakyes. Each TBucket represents a dynamic array of items.
Count is the number of items in a bucket.
Items is the array of items that the bucket stores.
TBucketList uses TBucketArray to represent its collection of buckets, or categories, under which it stores items.
TBucketList
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|