Skip to content
Turtle Kitty edited this page Aug 8, 2015 · 2 revisions

and?

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
Clone this wiki locally