Ds\Sequence::first

(PECL ds >= 1.0.0)

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

Açıklama

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

Returns the first value in the sequence.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

The first value in the sequence.

Hatalar/İstisnalar

UnderflowException if empty.

Örnekler

Örnek 1 Ds\Sequence::first() example

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(1)