Example #1
0
 /**
  * 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));
     }
 }