Skip to content
Subhajit Sahu edited this page Feb 13, 2021 · 7 revisions

Check if antecedent ⇔ consequent (a ⇔ b). 📰 📘

Similar: eq, neq.
Similar: imply, eq.


Boolean.eq(a, b)
// a: antecedent
// b: consequent
import io.github.javaf.*;

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

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

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

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


References

Clone this wiki locally