Skip to content
Subhajit Sahu edited this page Jan 19, 2021 · 9 revisions

Check if antecedent ⇔ consequent (x ⇔ y). 📰 📘


Boolean.eqv(x, y);
// x: antecedent
// y: consequent
import io.github.javaf.*;

Boolean.eqv(false, false);
// true

Boolean.eqv(true, true);
// true

Boolean.eqv(false, true);
// false

Boolean.eqv(true, false);
// false


References

Clone this wiki locally