Ds\Set::first

(PECL ds >= 1.0.0)

Ds\Set::firstReturns the first value in the set

Descrierea

public Ds\Set::first ( ) : mixed

Returns the first value in the set.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The first value in the set.

Erori/Excepții

UnderflowException if empty.

Exemple

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

<?php
$set 
= new \Ds\Set([123]);
var_dump($set->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