Ds\Vector::last

(PECL ds >= 1.0.0)

Ds\Vector::lastReturns the last value

Beschreibung

public Ds\Vector::last(): mixed

Returns the last value in the vector.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The last value in the vector.

Fehler/Exceptions

UnderflowException if empty.

Beispiele

Beispiel #1 Ds\Vector::last() example

<?php
$vector
= new \Ds\Vector([1, 2, 3]);
var_dump($vector->last());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

int(3)
add a note

User Contributed Notes

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