Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Math/min.php
Назад
<?php declare(strict_types=1); namespace Psl\Math; /** * Returns the smallest element of the given list, or null if the * list is empty. * * @template T of int|float * * @param list<T> $numbers * * @return T|null * * @pure */ function min(array $numbers): null|float|int { $min = null; foreach ($numbers as $number) { if (null === $min || $number < $min) { $min = $number; } } return $min; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка