Set
PHP Manual

Ds\Set::first

(PECL ds >= 1.0.0)

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

Descrição

public void Ds\Set::first ( void )

Returns the first value in the set.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The first value in the set.

Erros

UnderflowException if empty.

Exemplos

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

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

O exemplo acima irá imprimir algo similar à:

int(1)

Set
PHP Manual