System.Contnrs.TBucket

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBucket = record

C++

struct DECLSPEC_DRECORD TBucket
{
public:
    int Count;
    TBucketItemArray Items;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs System.Contnrs

Description

TBucketArray and TBucket represent a list of buckets that each store an array of items.

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.

See Also