Neos\Fusion\TypoScriptObjects\AbstractTypoScriptObject::offsetExists PHP Method

offsetExists() public method

Dummy implementation of ArrayAccess to allow this.XXX access in processors.
public offsetExists ( mixed $offset ) : boolean
$offset mixed
return boolean
    public function offsetExists($offset)
    {
        return $this->tsValue($offset) !== null;
    }