Ds\Deque::shift

(PECL ds >= 1.0.0)

Ds\Deque::shiftRemoves and returns the first value.

Описание

public mixed Ds\Deque::shift ( void )

Removes and returns the first value.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

The first value, which was removed.

Ошибки

UnderflowException if empty.

Примеры

Пример #1 Ds\Deque::shift() example

<?php
$deque 
= new \Ds\Deque(["a""b""c"]);

var_dump($deque->shift());
var_dump($deque->shift());
var_dump($deque->shift());
?>

Результатом выполнения данного примера будет что-то подобное:

string(1) "a"
string(1) "b"
string(1) "c"

Коментарии

404 Not Found

404 Not Found


nginx

    Поддержать сайт на родительском проекте КГБ