コード例 #1
0
ファイル: ArrayList.php プロジェクト: primephp/framework
 /**
  * @inheritdoc
  */
 public function add($e)
 {
     $t = parent::add($e);
     $this->ensureCapacity($t);
     return $t;
 }
コード例 #2
0
ファイル: Vector.php プロジェクト: primephp/framework
 /**
  * @inherit
  */
 public function add($e)
 {
     parent::add($e);
     $this->associateIndex($this->lastIndex, (string) $this->lastIndex);
 }