Prado\Web\TSessionIterator::next PHP Метод

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

This method is required by the interface Iterator.
public next ( )
    public function next()
    {
        do {
            $this->_key = next($this->_keys);
        } while (!isset($_SESSION[$this->_key]) && $this->_key !== false);
    }