Php/docs/class.spldoublylinkedlist

From Get docs

(PHP 5 >= 5.3.0, PHP 7)

Introduction

The SplDoublyLinkedList class provides the main functionalities of a doubly linked list.


Class synopsis


SplDoublyLinkedList implements Iterator , ArrayAccess , Countable , Serializable {

/* Constants */

const int IT_MODE_LIFO = 2

const int IT_MODE_FIFO = 0

const int IT_MODE_DELETE = 1

const int IT_MODE_KEEP = 0

/* Methods */

public __construct ( )

public add ( mixed $index , mixed $newval ) : void

public bottom ( ) : mixed

public count ( ) : int

public current ( ) : mixed

public getIteratorMode ( ) : int

public isEmpty ( ) : bool

public key ( ) : mixed

public next ( ) : void

public offsetExists ( mixed $index ) : bool

public offsetGet ( mixed $index ) : mixed

public offsetSet ( mixed $index , mixed $newval ) : void

public offsetUnset ( mixed $index ) : void

public pop ( ) : mixed

public prev ( ) : void

public push ( mixed $value ) : void

public rewind ( ) : void

public serialize ( ) : string

public setIteratorMode ( int $mode ) : void

public shift ( ) : mixed

public top ( ) : mixed

public unserialize ( string $serialized ) : void

public unshift ( mixed $value ) : void

public valid ( ) : bool

}

Predefined Constants

Iteration Direction

SplDoublyLinkedList::IT_MODE_LIFO
The list will be iterated in a last in, first out order, like a stack.
SplDoublyLinkedList::IT_MODE_FIFO
The list will be iterated in a first in, first out order, like a queue.


Iteration Behavior

SplDoublyLinkedList::IT_MODE_DELETE
Iteration will remove the iterated elements.
SplDoublyLinkedList::IT_MODE_KEEP
Iteration will not remove the iterated elements.


Table of Contents