Neos\Flow\Mvc\Controller\Arguments::offsetExists PHP Method

offsetExists() public method

Returns whether the requested index exists
public offsetExists ( mixed $offset ) : boolean
$offset mixed Offset
return boolean
    public function offsetExists($offset)
    {
        $translatedOffset = $this->validateArgumentExistence($offset);
        return parent::offsetExists($translatedOffset);
    }