コード例 #1
0
ファイル: SortedArraySet.php プロジェクト: cubiche/cubiche
 /**
  * {@inheritdoc}
  */
 public function offsetUnset($offset)
 {
     parent::offsetUnset($offset);
     $this->sort();
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function remove($element)
 {
     $this->checkType($element);
     $this->collection->remove($element);
 }