The Item class

(Available since version 1.0)

Introduction

This is a 'struct'-like class designed for use in the SEIDS::LinkedLists::Singly::LinkedList class.

It is not intended for public consumption.

Class synopsis

SEIDS::LinkedLists::Singly::Item {
/* Properties */
public mixed $data ;
public SEIDS::LinkedLists::Singly::Item $next ;
/* Methods */
public __construct ( mixed $data [, SEIDS::LinkedLists::Singly::Item $next ] )
public void __clone ( void )
}

Properties

data

The value of the item.

next

The next item in the list.

Table of Contents

To Top