The Item class

(Available since version 1.0)

Introduction

This is a 'struct'-like class designed for use in the binary heap class, SEIDS::Heaps::Binary::Heap.

It is not intended for public consumption.

Class synopsis

SEIDS::Heaps::Binary::Item {
/* Properties */
public mixed $data ;
public mixed $tag ;
/* Methods */
public __construct ( mixed $data , mixed $tag )
}

Properties

data

The data of the item.

tag

The tag of the item.

Table of Contents

To Top