Bravo3\Orm\Query\QueryResult::offsetExists PHP Method

offsetExists() public method

Check if an ID is in the result set
public offsetExists ( integer $offset ) : boolean
$offset integer
return boolean
    public function offsetExists($offset)
    {
        return array_key_exists($offset, $this->id_list);
    }