Predis\Collection\Iterator\HashKey::extractNext PHP Method

extractNext() protected method

protected extractNext ( )
    protected function extractNext()
    {
        if ($kv = each($this->elements)) {
            $this->position = $kv[0];
            $this->current = $kv[1];
            unset($this->elements[$this->position]);
        }
    }