Finds the maximum 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 maximum value.
The maximum.
enum bool cmp(alias T, alias U) = T < U; static assert(Max!(cmp, 8, 4, 5, 3, 13) == 13); static assert(Max!(cmp, 8) == 8);
$(D_PSYMBOL isLess).
See Implementation
Finds the maximum value in Args according to pred.
Args should contain at least one element.
pred can evaluate to: