HH\Lib\Math\min

Meta Engineer?

This is available as Math\min in the www repository.

Returns the smallest element of the given Traversable, or null if the Traversable is empty

namespace HH\Lib\Math;

function min<T as num>(
  Traversable<T> $numbers,
): ?T;

Parameters

Returns

  • ?T

Examples

$v = vec[3, 2, 6, 1, 4];
$min = Math\min($v);
echo "The min is $min";