Box\Spout\Reader\CSV\RowIterator::rewind PHP Метод

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

Rewind the Iterator to the first element
public rewind ( ) : void
Результат void
    public function rewind()
    {
        $this->rewindAndSkipBom();
        $this->numReadRows = 0;
        $this->rowDataBuffer = null;
        $this->next();
    }