phpstreams\operations\MappingOperation::getIterator PHP Method

getIterator() public method

public getIterator ( )
    public function getIterator()
    {
        $callback = $this->callback;
        foreach ($this->source as $key => $value) {
            (yield $key => $callback($value));
        }
    }
MappingOperation