Ds\Vector::shift

(PECL ds >= 1.0.0)

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

Описание

public mixed Ds\Vector::shift ( void )

Removes and returns the first value.

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

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

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

The first value, which was removed.

Ошибки

UnderflowException if empty.

Примеры

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

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

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

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

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

Коментарии

404 Not Found

404 Not Found


nginx

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