/**
  * Return wether the offset exists in the decorated array or not
  * @param int $offset
  * @return boolean
  */
 public function offsetExists($offset)
 {
     return $this->array->offsetExists($offset);
 }