Ds\Vector::pop

Removes and returns the last value.

Beschreibung

public mixed Ds\Vector::pop ( void )

Removes and returns the last value.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The removed last value.

Fehler/Exceptions

UnderflowException if empty.

Beispiele

Beispiel #1 Ds\Vector::pop example

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

var_dump($vector->pop());
var_dump($vector->pop());
var_dump($vector->pop());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

int(3)
int(2)
int(1)