Ds\Vector::first

(PECL ds >= 1.0.0)

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

˵��

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

Returns the first value in the vector.

����

�˺���û�в�����

����ֵ

The first value in the vector.

�����쳣

UnderflowException if empty.

����

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

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

�������̵���������ڣ�

int(1)