/**
  * Checks whether an offset exists in the iterator.
  *
  * @param   mixed  $offset  The array offset.
  *
  * @return  boolean  True if the offset exists, false otherwise.
  *
  * @since   1.0
  */
 public function offsetExists($offset)
 {
     return $this->registry->offsetExists($offset);
 }