Lisphp_Scope::getIterator PHP Method

getIterator() public method

public getIterator ( )
    public function getIterator()
    {
        foreach ($this->listSymbols() as $name) {
            $values[$name] = $this[$name];
        }
        return new ArrayIterator(isset($values) ? $values : array());
    }