GoLang Ds\Vector::first

request it (257)
GoLang replacement for PHP's Ds\Vector::first [edit | history]



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

PHP Ds\Vector::first

PHP original manual for Ds\Vector::first [ show | php.net ]

Ds\Vector::first

(PECL ds >= 1.0.0)

Ds\Vector::firstReturns the first value in the vector

Description

public mixed Ds\Vector::first ( void )

Returns the first value in the vector.

Parameters

This function has no parameters.

Return Values

The first value in the vector.

Errors/Exceptions

UnderflowException if empty.

Examples

Example #1 Ds\Vector::first() example

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

The above example will output something similar to:

int(1)