whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Iter
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Iter/apply.php
<?php declare(strict_types=1); namespace Psl\Iter; use Closure; /** * Applies a function to all values of an iterable. * * @template T * * @param iterable<T> $iterable Iterable to apply on * @param (Closure(T): void) $function Apply function */ function apply(iterable $iterable, Closure $function): void { foreach ($iterable as $value) { $function($value); } }
Copyright ©2021 || Defacer Indonesia