La función Ds \ Set :: first () puede devolver el primer valor de un conjunto.
Sintaxis
public void Ds\Set::first( void )
La función Ds \ Set :: first () no tiene ningún parámetro.
Ejemplo 1
<?php
$set = new \Ds\Set();
$set->add("10");
$set->add("20");
$set->add("30");
print_r($set->first());
?>
Ejemplo 2
<?php
$set = new \Ds\Set();
$set->add("Tutorials");
$set->add("Point");
$set->add("India");
print_r($set->first());
?>