-
Notifications
You must be signed in to change notification settings - Fork 4
and?
Turtle Kitty edited this page Aug 8, 2015
·
2 revisions
A function that tests boolean conjunction. It differs from and in that it evaluates all its arguments, and can be passed to higher-order functions.
(and? 1 2) -> true
(and? 0 1) -> false
(and? true false (launch-the-missile))
-> false ; but the missile totally launched