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/sort.php
<?php declare(strict_types=1); namespace Psl\Vec; use Closure; use function sort as php_sort; use function usort; /** * Returns a new list 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 T * * @param iterable<T> $iterable * @param (Closure(T, T): int)|null $comparator * * @return list<T> */ function sort(iterable $iterable, ?Closure $comparator = null): array { $array = values($iterable); if (null !== $comparator) { usort($array, $comparator); } else { php_sort($array); } return $array; }
Copyright ©2021 || Defacer Indonesia