HH\Lib\Math\min
Requires the Hack Standard Library to be installed.
Facebook Engineer?
This function is available as Math\min()
in Facebook's 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;
- For a known number of inputs, see
Math\minva()
. - To find the largest number, see
Math\max()
.
Parameters
Returns
?T