whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
kckglobal
/
public_html
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Iter
/
Upload File:
files >> //proc/self/root/home/kckglobal/public_html/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