whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Vec
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Vec/shuffle.php
<?php declare(strict_types=1); namespace Psl\Vec; use function shuffle as php_shuffle; /** * Shuffle the given iterable items. * * Example: * * Vec\shuffle([1, 2, 3]) * => Vec(2, 3, 1) * * Vec\shuffle(['a' => 1, 'b' => 2, 'c' => 3]) * => Vec(2, 3, 1) * * @template T * * @param iterable<T> $iterable * * @return list<T> the shuffled items as a list. */ function shuffle(iterable $iterable): array { $array = namespace\values($iterable); php_shuffle($array); return $array; }
Copyright ©2021 || Defacer Indonesia