예제 #1
0
파일: MList.php 프로젝트: mpstyle/mtoolkit
 /**
  * Inserts MList <i>$value</i> at the end of the list.
  * 
  * @param \MToolkit\Core\MList $value
  */
 public function appendList(MList $value)
 {
     for ($i = 0; $i < $value->count(); $i++) {
         $this->append($value->at($i));
     }
 }