(PECL ds >= 1.0.0)
Ds\Set::first — Returns the first value in the set.
Returns the first value in the set.
この関数にはパラメータはありません。
The first value in the set.
UnderflowException if empty.
例1 Ds\Set::first() example
<?php
$set = new \Ds\Set([1, 2, 3]);
var_dump($set->first());
?>
上の例の出力は、 たとえば以下のようになります。
int(1)