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

Checks if all values are true. 📰 📘

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


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

and True True
-- True

and True False
-- False

and4 True True True True
-- True

and4 True False True True
-- False


References

Clone this wiki locally