MongoLite\Cursor::rewind PHP Method

rewind() public method

Iterator implementation
public rewind ( )
    public function rewind()
    {
        if ($this->position !== false) {
            $this->position = 0;
        }
    }