HH\Lib\Math\maxva
Returns the largest of all input numbers
namespace HH\Lib\Math;
function maxva<T as num>(
T $first,
T $second,
T ...$rest,
): T;
- To find the smallest number, see
Math\minva(). - For Traversables, see
Math\max().
Parameters
T $firstT $secondT ...$rest
Returns
T
Examples
$maxval = Math\maxva(4, 3, 8, 1, 1, 2);
echo "The max value is " . $maxval;