PHP 8.3.4 Released!

Ds\Sequence::first

(PECL ds >= 1.0.0)

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

Beschreibung

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

Returns the first value in the sequence.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The first value in the sequence.

Fehler/Exceptions

UnderflowException if empty.

Beispiele

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

<?php
$sequence
= new \Ds\Vector([1, 2, 3]);
var_dump($sequence->first());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

int(1)
add a note

User Contributed Notes

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