The PriorityQueueHeapItem class

(Available since version 1.0)

Introduction

This is a 'struct'-like class designed for use in the priority queue oriented heap classes.

It is not intended for public consumption.

Class synopsis

SEIDS::Heaps::PriorityQueueHeapItem {
/* Properties */
public mixed $value ;
public mixed $priority ;
/* Methods */
public __construct ( mixed $value , mixed $priority )
public void __clone ( void )
}

Properties

value

The value of the item.

priority

The priority of the item.

Table of Contents

To Top