Example #1
0
 /**
  * @param array|\stekycz\collections\ICollection $items
  * @return \stekycz\collections\ArraySet
  */
 public function removeAll($items)
 {
     $items = Collections::toSet($items);
     $this->items->removeAll($items);
     return $this;
 }