Skip to content
Subhajit Sahu edited this page Mar 25, 2021 · 5 revisions

Checks if antecedent ⇔ consequent (a ⇔ b). 📰 📘

Similar: eq, neq.
Similar: imply, eq.


eq(a, b)
# a: antecedent
# b: consequent
from extra_boolean import eq


eq(False, False)
# True

eq(True, True)
# True

eq(False, True)
# False

eq(True, False)
# False


References

Clone this wiki locally