コード例 #1
0
ファイル: SortedList.php プロジェクト: malarzm/collections
 /**
  * @inheritdoc
  */
 public function set($key, $value)
 {
     parent::set($key, $value);
     usort($this->elements, [$this, 'compare']);
 }