iter\rewindable\_RewindableGenerator::current PHP Method

current() public method

public current ( )
    public function current()
    {
        if (!$this->generator) {
            $this->rewind();
        }
        return $this->generator->current();
    }