Skip to content
Subhajit Sahu edited this page Mar 24, 2021 · 8 revisions

Checks if value is false. 📰 📘

Similar: and, or, not, xor.


Boolean.not(a)
// a: a boolean
import io.github.javaf.*;

Boolean.not(false);
// true

Boolean.not(true);
// false


References

Clone this wiki locally