$(D_KEYWORD true) if L is sorted, $(D_KEYWORD false) if not.
enum cmp(T, U) = T.sizeof < U.sizeof; static assert(isSorted!(cmp)); static assert(isSorted!(cmp, byte)); static assert(isSorted!(cmp, byte, ubyte, short, uint)); static assert(!isSorted!(cmp, long, byte, ubyte, short, uint));
Tests whether L is sorted in ascending order according to cmp.
cmp can evaluate to: