(PECL ds >= 1.0.0)
Ds\Set::remove — Removes all given values from the set
Removes all given values
from the set, ignoring any that are not in the set.
values
The values to remove.
Не повертає значень.
Приклад #1 Ds\Set::remove() example
<?php
$set = new \Ds\Set([1, 2, 3, 4, 5]);
$set->remove(1); // Remove 1
$set->remove(1, 2); // Can't find 1, but remove 2
$set->remove(...[3, 4]); // Remove 3 and 4
var_dump($set);
?>
Поданий вище приклад виведе щось схоже на:
object(Ds\Set)#1 (1) { [0]=> int(5) }