Skip to content
Subhajit Sahu edited this page Mar 24, 2021 · 8 revisions

Checks if antecedent ⇔ consequent (x ⇔ y). 📰 📘

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


eqv a b
-- a: antecedent
-- b: consequent
import Boolean exposing (..)

eqv False False
-- True

eqv True True
-- True

eqv False True
-- False

eqv True False
-- False


References

Clone this wiki locally