Tests whether Args[0] isn't equal to Args[1].
$(D_PSYMBOL isNotEqual) checks first if Args can be compared directly. If not, they are compared as types: is(Args[0] == Args[1]). It it fails, the arguments are considered to be not equal.
Two aliases to compare for equality.
$(D_KEYWORD true) if Args[0] isn't equal to Args[1], $(D_KEYWORD false) otherwise.
static assert(!isNotEqual!(int, int)); static assert(isNotEqual!(5, int)); static assert(isNotEqual!(5, 8));
See Implementation
Tests whether Args[0] isn't equal to Args[1].
$(D_PSYMBOL isNotEqual) checks first if Args can be compared directly. If not, they are compared as types: is(Args[0] == Args[1]). It it fails, the arguments are considered to be not equal.