Ds\Sequence::first

(PECL ds >= 1.0.0)

Ds\Sequence::firstReturns the first value in the sequence

Descrierea

abstract public Ds\Sequence::first ( ) : mixed

Returns the first value in the sequence.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The first value in the sequence.

Erori/Excepții

UnderflowException if empty.

Exemple

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

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

Exemplul de mai sus va afișa ceva similar cu:

int(1)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top