Mongolid\Cursor\Cursor::rewind PHP Метод

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

Iterator interface rewind (used in foreach).
public rewind ( ) : void
Результат void
    public function rewind()
    {
        try {
            $this->getCursor()->rewind();
        } catch (LogicException $e) {
            $this->fresh();
            $this->getCursor()->rewind();
        }
        $this->position = 0;
    }