Ds\Set::first

(PECL ds >= 1.0.0)

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

Opis

public Ds\Set::first ( void ) : mixed

Returns the first value in the set.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

The first value in the set.

Błędy/Wyjątki

UnderflowException if empty.

Przykłady

Przykład #1 Ds\Set::first() example

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

Powyższy przykład wyświetli coś podobnego do:

int(1)
add a note add a note

User Contributed Notes

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