Pinq\Iterators\Generators\Set::getIterator PHP Method

getIterator() public method

public getIterator ( )
    public function &getIterator()
    {
        foreach ($this->values as &$value) {
            (yield $value);
        }
    }