We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Checks if antecedent ⇔ consequent (a ⇔ b). 📰 📘
Similar: Eq, Neq. Similar: Imply, Eq.
boolean.Eqv(a, b) // a: antecedent // b: consequent
import ( boolean "github.com/golangf/extra-boolean" ) boolean.Eqv(false, false) // true boolean.Eqv(true, true) // true boolean.Eqv(false, true) // false boolean.Eqv(true, false) // false
There was an error while loading. Please reload this page.