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: imply, nimply. Similar: imply, eq.
Boolean.imp(a, b); // a: antecedent // b: consequent
import io.github.javaf.*; Boolean.imp(false, false); // true Boolean.imp(false, true); // true Boolean.imp(true, true); // true Boolean.imp(true, false); // false