A função Ds \ Set :: get () pode retornar o valor em um determinado índice.
Sintaxe
public mixed Ds\Set::get( int $index )
A função Ds \ Set :: get () pode retornar o valor no índice solicitado.
A função Ds \ Set :: get () pode lançar OutOfRangeException se um índice não for válido.
Exemplo 1
<?php
$set = new \Ds\Set([10, 15, 20, 25, 30]);
var_dump($set);
echo "The value at index 3:";
print_r($set->get(3));
?>
Exemplo 2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
var_dump($set);
echo "The value at index 1:";
print_r($set->get(1));
?>