Neos\Flow\Persistence\Doctrine\QueryResult::offsetExists PHP Method

offsetExists() public method

This method is needed to implement the \ArrayAccess interface, but it isn't very useful as the offset has to be an integer
public offsetExists ( mixed $offset ) : boolean
$offset mixed
return boolean
    public function offsetExists($offset)
    {
        $this->initialize();
        return isset($this->rows[$offset]);
    }