We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Checks if antecedent ⇎ consequent (a ⇎ b). 📰 📘
Similar: eq, neq. Similar: imply, eq.
neq(a, b) # a: antecedent # b: consequent
from extra_boolean import neq neq(True, False) # True neq(False, True) # True neq(True, True) # False neq(False, False) # False