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

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

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


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

neq True False
-- True

neq True False
-- True

neq True True
-- False

neq False False
-- False


References

Clone this wiki locally