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

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

For example unset($queue[1]);
public offsetUnset ( integer $offset ) : boolean
$offset integer Index that you want to remove from the queue.
Результат boolean TRUE when the item is removed.
    public function offsetUnset($offset)
    {
        return $this->remove($offset);
    }