/**
  * Check if an offset exists
  * Required by the ArrayAccess implementation
  *
  * @param string $offset
  * @return boolean
  */
 public function offsetExists($offset)
 {
     return $this->_matchRowset->offsetExists($offset);
 }