Qaribou\Collection\ImmArray::walk PHP Method

walk() public method

Named walk for historic reasons - forEach is reserved in PHP
public walk ( callable $cb ) : ImmArray
$cb callable Function to call on each element
return ImmArray
    public function walk(callable $cb)
    {
        foreach ($this as $i => $el) {
            $cb($el, $i, $this);
        }
        return $this;
    }