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

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

Similar: imply, nimply.
Similar: imply, eq.


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

imply False False
-- True

imply False True
-- True

imply True True
-- True

imply True False
-- False


References

Clone this wiki locally