whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Math
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Math/maxva.php
<?php declare(strict_types=1); namespace Psl\Math; /** * Returns the largest number of all the given numbers. * * @template T of int|float * * @param T $first * @param T $second * @param T ...$rest * * @return T * * @pure */ function maxva(int|float $first, int|float $second, int|float ...$rest): int|float { $max = $first > $second ? $first : $second; foreach ($rest as $number) { if ($number > $max) { $max = $number; } } return $max; }
Copyright ©2021 || Defacer Indonesia