rcrowe\Hippy\Queue::offsetExists PHP Метод

offsetExists() публичный Метод

For example isset($queue[0]);
public offsetExists ( integer $offset ) : boolean
$offset integer Index that you want to check the existence for.
Результат boolean Whether the index exists or not.
    public function offsetExists($offset)
    {
        return isset($this->container[$offset]);
    }