Struktury danych
PHP Manual

The SplQueue class

(PHP 5 >= 5.3.0)

Wstęp

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

Krótki opis klasy

SplQueue extends SplDoublyLinkedList implements Iterator , ArrayAccess , Countable {
/* Metody */
__construct ( void )
mixed dequeue ( void )
void enqueue ( mixed $value )
void setIteratorMode ( int $mode )
/* Metody dziedziczone */
mixed SplDoublyLinkedList::key ( void )
void SplDoublyLinkedList::offsetSet ( mixed $index , mixed $newval )
mixed SplDoublyLinkedList::pop ( void )
public string SplDoublyLinkedList::serialize ( void )
mixed SplDoublyLinkedList::top ( void )
public void SplDoublyLinkedList::unserialize ( string $serialized )
}

Spis treści


Struktury danych
PHP Manual