PhpOrient\Protocols\Binary\Data\Record::offsetExists PHP Method

offsetExists() public method

(PHP 5 >= 5.0.0)
Whether a offset exists
public offsetExists ( mixed $offset ) : boolean
$offset mixed

An offset to check for.

return boolean true on success or false on failure.

The return value will be casted to boolean if non-boolean was returned.

    public function offsetExists($offset)
    {
        return array_key_exists($offset, $this->oData);
    }