We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Checks if antecedent ⇒ consequent (a ⇒ b). 📰 📘
Similar: imply, nimply. Similar: imply, eq.
imply(a, b) # a: antecedent # b: consequent
from extra_boolean import imply imply(False, False) # True imply(False, True) # True imply(True, True) # True imply(True, False) # False