Two aliases to compare for equality.
$(D_KEYWORD true) if Args[0] is greater than or equal to Args[1], $(D_KEYWORD false) otherwise.
enum bool boolCmp(T, U) = T.sizeof < U.sizeof; static assert(!isGreaterEqual!(boolCmp, byte, int)); static assert(isGreaterEqual!(boolCmp, uint, int)); static assert(isGreaterEqual!(boolCmp, long, int)); enum ptrdiff_t intCmp(T, U) = T.sizeof - U.sizeof; static assert(!isGreaterEqual!(intCmp, byte, int)); static assert(isGreaterEqual!(intCmp, uint, int)); static assert(isGreaterEqual!(intCmp, long, int));
Tests whether Args[0] is greater than or equal to Args[1] according to cmp.
cmp can evaluate to: