public function push(CollectionInterface $set)
 {
     if ($set->count() > 0 && !$this->exists($set)) {
         $this->_items[] = $set;
         return true;
     }
     return false;
 }