GoLang pht\Vector::pop

request it (293)
GoLang replacement for PHP's pht\Vector::pop [edit | history]



Do you know a GoLang replacement for PHP's pht\Vector::pop? Write it!

PHP pht\Vector::pop

PHP original manual for pht\Vector::pop [ show | php.net ]

pht\Vector::pop

(PECL pht >= 0.0.1)

pht\Vector::popPops a value to the vector

Description

public mixed pht\Vector::pop ( void )

This method pops a value from the end of a vector (in constant time). Popping a value from an empty vector will result in an Error exception.

Parameters

This function has no parameters.

Return Values

The value from the end of the vector.

Examples

Example #1 Popping a value from a vector

<?php

use pht\Vector;

$vector = new Vector();

$vector->push(1);
$vector[] = 2;

var_dump($vector->pop());

The above example will output:

int(2)