whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Dict
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Dict/sort.php
<?php declare(strict_types=1); namespace Psl\Dict; use Closure; use function asort; use function uasort; /** * Returns a new dict ( keyed-array ) sorted by the values of the given iterable. * * If the optional comparator function isn't provided, the values will be sorted * in ascending order. * * @template Tk of array-key * @template Tv * * @param iterable<Tk, Tv> $iterable * @param (Closure(Tv, Tv): int)|null $comparator * * @return array<Tk, Tv> */ function sort(iterable $iterable, ?Closure $comparator = null): array { $array = []; foreach ($iterable as $k => $v) { $array[$k] = $v; } if (null !== $comparator) { uasort( $array, /** * @param Tv $a * @param Tv $b */ static fn(mixed $a, mixed $b): int => $comparator($a, $b) ); } else { asort($array); } return $array; }
Copyright ©2021 || Defacer Indonesia