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

Checks if value is false. 📰 📘

Similar: and, or, not, xor.


not a
-- a: a boolean
import Boolean exposing (..)

not False
-- True

not True
-- False


References

Clone this wiki locally