Example #1
0
 /**
  * @param mixed $item
  * @return \stekycz\collections\ArraySet
  */
 public function add($item)
 {
     if (!$this->contains($item)) {
         $this->items->add($item);
     }
     return $this;
 }