Coseva\CSV::getIterator PHP Method

getIterator() public method

Required for implementing IteratorAggregate
    public function getIterator()
    {
        if (!isset($this->_rows)) {
            $this->parse();
        }
        return new ArrayIterator($this->_rows);
    }