Структуры данных
PHP Manual

The SplQueue class

Введение

The SplQueue class provides the main functionalities of a queue implemented using a doubly linked list.

Обзор классов

SplQueue extends SplDoublyLinkedList implements Iterator , ArrayAccess , Countable {
/* Методы */
__construct ( void )
mixed dequeue ( void )
void enqueue ( mixed $value )
void setIteratorMode ( int $mode )
/* Наследуемые методы */
mixed SplDoublyLinkedList::key ( void )
void SplDoublyLinkedList::offsetSet ( mixed $index , mixed $newval )
mixed SplDoublyLinkedList::pop ( void )
mixed SplDoublyLinkedList::top ( void )
}

Содержание


Структуры данных
PHP Manual