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.
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