We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Checks if antecedent ⇔ consequent (x ⇔ y). 📰 📘
Similar: eq, neq. Similar: imply, eq.
eq a b -- a: antecedent -- b: consequent
import Boolean exposing (..) eq False False -- True eq True True -- True eq False True -- False eq True False -- False