System.Contnrs.TBucketItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TBucketItem = record
    Item, Data: Pointer;
  end;

C++

struct DECLSPEC_DRECORD TBucketItem
{
public:
    void *Item;
    void *Data;
};

Properties

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

Description

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

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.

See Also