ElggData::offsetExists PHP Method

offsetExists() public method

Array access interface
See also: ArrayAccess::offsetExists()
public offsetExists ( integer $offset ) : integer
$offset integer Offset
return integer
    public function offsetExists($offset)
    {
        return array_key_exists($offset, $this->attributes);
    }