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

Checks if any value is false. 📰 📘

Similar: and, nand.
Similar: and, or, not, xor.


nand[n] a b ...
-- a: 1st boolean
-- b: 2nd boolean
import Boolean exposing (..)

nand True False
-- True

nand True True
-- False

nand4 True True False True
-- True

nand4 True True True True
-- False


References

Clone this wiki locally