Ds\Deque::last

(PECL ds >= 1.0.0)

Ds\Deque::lastReturns the last value

Descrierea

public Ds\Deque::last ( ) : mixed

Returns the last value in the deque.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The last value in the deque.

Erori/Excepții

UnderflowException if empty.

Exemple

Example #1 Ds\Deque::last() example

<?php
$deque 
= new \Ds\Deque([123]);
var_dump($deque->last());
?>

Exemplul de mai sus va afișa ceva similar cu:

int(3)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top