Finds the minimum value in Args according to pred.
Args should contain at least one element.
pred can evaluate to:
Template predicate.
Elements for which you want to find the minimum value.
The minimum.
enum bool cmp(alias T, alias U) = T < U; static assert(Min!(cmp, 8, 4, 5, 3, 13) == 3); static assert(Min!(cmp, 8) == 8);
$(D_PSYMBOL isLess).
See Implementation
Finds the minimum value in Args according to pred.
Args should contain at least one element.
pred can evaluate to: