(PECL ds >= 1.0.0)
Ds\Deque::first — Returns the first value in the deque
У цієї функції немає параметрів.
The first value in the deque.
UnderflowException if empty.
Приклад #1 Ds\Deque::first() example
<?php
$deque = new \Ds\Deque([1, 2, 3]);
var_dump($deque->first());
?>
Поданий вище приклад виведе щось схоже на:
int(1)