|
Ds\Set::removeRemoves all given values from the set. Description
public void Ds\Set::remove
([ mixed
$...values
] )
Removes all given Parameters
Return ValuesNo value is returned. ExamplesExample #1 Ds\Set::remove example
<?phpThe above example will output something similar to:
object(Ds\Set)#1 (1) {
[0]=>
int(5)
}
|