Flake\Core\Collection::walk PHP Method

walk() public method

public walk ( $sFunc, $aParams = [] )
    function walk($sFunc, $aParams = [])
    {
        $aData = $this->toArray();
        $oNewColl = $this->fromArray(array_walk($aData, $sFunc, $aParams));
        return $oNewColl;
    }