Sorts L in ascending order according to cmp.
cmp can evaluate to:
Merge sort is used to sort the arguments.
Sorting template predicate.
Elements to be sorted.
Elements of L in ascending order.
enum cmp(T, U) = T.sizeof < U.sizeof; static assert(is(Sort!(cmp, long, short, byte, int) == AliasSeq!(byte, short, int, long)));
Merge sort.
See Implementation
Sorts L in ascending order according to cmp.
cmp can evaluate to:
Merge sort is used to sort the arguments.