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/first.php
<?php declare(strict_types=1); namespace Psl\Iter; /** * Returns the first element of an iterable, if the iterable is empty, null will be returned. * * @template T * * @param iterable<T> $iterable * * @return T|null */ function first(iterable $iterable) { foreach ($iterable as $v) { return $v; } return null; }
Copyright ©2021 || Defacer Indonesia