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/contains.php
<?php declare(strict_types=1); namespace Psl\Iter; /** * Returns true if the given iterable contains the value. Strict equality is * used. * * @template T * * @param iterable<T> $iterable * @param T $value */ function contains(iterable $iterable, mixed $value): bool { foreach ($iterable as $v) { if ($value === $v) { return true; } } return false; }
Copyright ©2021 || Defacer Indonesia