I know I can assert inequality with simple (not (= a b))
, but I wonder if there is a operator that does this directly. I have tried everything that came to my mind including !=
, <>
, \=
(this doesn't parse), /=
, =/=
, neq
and none of them works.
Is there a dedicated function for it or do I need to compose equality with negation?