/**
  * Move forward to next element.
  * Similar to the next() function for arrays in PHP.
  * Required by interface Iterator.
  *
  * @return void
  */
 public function next()
 {
     ++$this->_pointer;
     $this->_matchRowset->next();
 }