Iterates the passed arguments and returns the minimum value.
The minimum of the passed-in values.
min is not defined for arguments of mixed signedness because of security reasons. Please unify type or use a Phobos analog.
int a = -10; uint b = 10; static assert(!is(typeof(min(a, b))));
See Implementation
Iterates the passed arguments and returns the minimum value.