Ds\Sequence::last

(PECL ds >= 1.0.0)

Ds\Sequence::lastReturns the last value

Opis

abstract public Ds\Sequence::last ( void ) : mixed

Returns the last value in the sequence.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

The last value in the sequence.

Błędy/Wyjątki

UnderflowException if empty.

Przykłady

Przykład #1 Ds\Sequence::last() example

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

Powyższy przykład wyświetli coś podobnego do:

int(3)
add a note add a note

User Contributed Notes

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