La función Ds \ Set :: copy () puede devolver una copia superficial del conjunto.
Sintaxis
public Ds\Set Ds\Set::copy( void )
La función Ds \ Set :: copy () no tiene ningún parámetro.
Ejemplo 1
<?php
$set = new \Ds\Set([10, 15, 20, 25, 30]);
print_r($set);
$set->copy();
print_r($set);
?>
Ejemplo 2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
print_r($set);
$set->copy();
print_r($set);
?>