A função Ds \ Set :: __ construct () pode criar uma nova instância.
Sintaxe
public Ds\Set::__construct([ mixed $...values ] )
A função Ds \ Set :: __ construct () pode criar uma nova instância usando um objeto percorrível ou uma matriz para valores iniciais.
Exemplo 1
<?php
$set = new \Ds\Set();
print_r($set);
$set = new \Ds\Set(["I", "N", "D", "I", "A"]);
print_r($set);
?>
Exemplo 2
<?php
$set = new \Ds\Set([1, 3, 5, 7, 9]);
var_dump($set);
$set = new \Ds\Set([1, 3, 5, 7, 9, 10]);
var_dump($set);
?>