(PECL ds >= 1.0.0)
Ds\Deque::last — Returns the last value
public Ds\Deque::last ( ) : mixed
Returns the last value in the deque.
This function has no parameters.
The last value in the deque.
UnderflowException if empty.
Example #1 Ds\Deque::last() example
<?php $deque = new \Ds\Deque([1, 2, 3]); var_dump($deque->last()); ?>
The above example will output something similar to:
int(3)
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/ds-deque.last.php