Ds\Vector::last

(PECL ds >= 1.0.0)

Ds\Vector::lastReturns the last value

Descripción

public Ds\Vector::last ( void ) : mixed

Returns the last value in the vector.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

The last value in the vector.

Errores/Excepciones

UnderflowException if empty.

Ejemplos

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

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

El resultado del ejemplo sería algo similar a:

int(3)